From 7ac41729f45948cd54892948bfa769528dd29585 Mon Sep 17 00:00:00 2001 From: Jethary Date: Wed, 23 Oct 2024 13:10:48 -0400 Subject: [PATCH] address feedback --- .../src/organisms/EndUserAgreementFooter/index.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/components/src/organisms/EndUserAgreementFooter/index.tsx b/components/src/organisms/EndUserAgreementFooter/index.tsx index f0c8cf962c0..c056128c4e5 100644 --- a/components/src/organisms/EndUserAgreementFooter/index.tsx +++ b/components/src/organisms/EndUserAgreementFooter/index.tsx @@ -1,21 +1,24 @@ +import styled from 'styled-components' import { StyledText } from '../../atoms' import { COLORS } from '../../helix-design-system' import { Flex, Link } from '../../primitives' -import { DIRECTION_COLUMN, TEXT_DECORATION_UNDERLINE } from '../../styles' +import { + ALIGN_CENTER, + DIRECTION_COLUMN, + TEXT_DECORATION_UNDERLINE, +} from '../../styles' import { SPACING } from '../../ui-style-constants' const PRIVACY_POLICY_URL = 'https://opentrons.com/privacy-policy' const EULA_URL = 'https://opentrons.com/eula' -// TODO(ja: 10/22/24): figure out the i18n stuff since components package.json does not have i18n and -// should not have i18n (since other projects use it). Due to the links, we would need access to both t and Trans export function EndUserAgreementFooter(): JSX.Element { return (