Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove mention of data collation tool on landing and email settings results page #7390

Merged
merged 3 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import { Container, Skeleton, Stack, Text } from '@chakra-ui/react'
import simplur from 'simplur'

import { OGP_FORMSG_COLLATE } from '~constants/links'
import Link from '~components/Link'

import { useFormResponsesCount } from '../../queries'
import { EmptyResponses } from '../common/EmptyResponses'

Expand All @@ -30,12 +27,7 @@ export const EmailResponsesTab = (): JSX.Element => {
</Text>
</Skeleton>
<Text textStyle="body-1">
FormSG does not store responses in Email mode. To collate the
responses in your Outlook Inbox, use the{' '}
<Link isExternal href={OGP_FORMSG_COLLATE}>
KenLSM marked this conversation as resolved.
Show resolved Hide resolved
Data Collation Tool
</Link>
.
FormSG does not store responses in Email mode.
</Text>
</Stack>
</Container>
Expand Down
14 changes: 1 addition & 13 deletions frontend/src/pages/Landing/Home/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,9 @@ import {
GUIDE_TRANSFER_OWNERSHIP,
LANDING_PAGE_EXAMPLE_FORMS,
OGP_ALL_PRODUCTS,
OGP_FORMSG_COLLATE,
OGP_FORMSG_REPO,
} from '~constants/links'
import {
LANDING_PAYMENTS_ROUTE,
LOGIN_ROUTE,
TOU_ROUTE,
} from '~constants/routes'
import { LOGIN_ROUTE, TOU_ROUTE } from '~constants/routes'
import { useIsMobile } from '~hooks/useIsMobile'
import { useMdComponents } from '~hooks/useMdComponents'
import Button from '~components/Button'
Expand Down Expand Up @@ -496,13 +491,6 @@ export const LandingPage = (): JSX.Element => {
<OrderedListIcon index={4} />
Collect responses at your email address
</ListItem>
<ListItem textStyle="body-2">
KenLSM marked this conversation as resolved.
Show resolved Hide resolved
<OrderedListIcon index={5} />
Collate responses with our{' '}
<Link isExternal href={OGP_FORMSG_COLLATE}>
data collation tool
</Link>
</ListItem>
</OrderedList>
</TabPanel>
</TabPanels>
Expand Down
Loading