Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jerader committed Oct 23, 2024
1 parent b6aa06a commit 7ac4172
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions components/src/organisms/EndUserAgreementFooter/index.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
import styled from 'styled-components'

Check failure on line 1 in components/src/organisms/EndUserAgreementFooter/index.tsx

View workflow job for this annotation

GitHub Actions / js checks

'styled' is defined but never used

Check failure on line 1 in components/src/organisms/EndUserAgreementFooter/index.tsx

View workflow job for this annotation

GitHub Actions / js checks

'styled' is defined but never used
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 (
<Flex
backgroundColor={COLORS.grey20}
padding={SPACING.spacing24}
width="100%"
alignItems="center"
alignItems={ALIGN_CENTER}
flexDirection={DIRECTION_COLUMN}
gridGap={SPACING.spacing8}
>
Expand Down

0 comments on commit 7ac4172

Please sign in to comment.