Skip to content

Commit

Permalink
fix(app): remove deck state modification support link until article w…
Browse files Browse the repository at this point in the history
…ritten (#13434)

Remove link to deck state modification support documentation until there is actual documentation to
point to.

Closes RAUT-610
  • Loading branch information
b-cooper authored Sep 12, 2023
1 parent b9ddbdd commit 2559af4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions app/src/organisms/InterventionModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@ import {
DISPLAY_FLEX,
DIRECTION_COLUMN,
ALIGN_FLEX_START,
TYPOGRAPHY,
JUSTIFY_SPACE_BETWEEN,
Link,
Icon,
PrimaryButton,
JUSTIFY_FLEX_END,
} from '@opentrons/components'

import { SmallButton } from '../../atoms/buttons'
Expand Down Expand Up @@ -84,7 +82,7 @@ const FOOTER_STYLE = {
display: DISPLAY_FLEX,
width: '100%',
alignItems: ALIGN_CENTER,
justifyContent: JUSTIFY_SPACE_BETWEEN,
justifyContent: JUSTIFY_FLEX_END,
} as const

export interface InterventionModalProps {
Expand Down Expand Up @@ -204,6 +202,8 @@ export function InterventionModal({
<Box {...CONTENT_STYLE}>
{childContent}
<Box {...FOOTER_STYLE}>
{/*
TODO(BC, 08/31/23): reintroduce this link and justify space between when support article is written
<Link css={TYPOGRAPHY.darkLinkH4SemiBold} href="" external>
{t('protocol_info:manual_steps_learn_more')}
<Icon
Expand All @@ -212,6 +212,7 @@ export function InterventionModal({
size="0.5rem"
/>
</Link>
*/}
<PrimaryButton onClick={onResume}>
{t('confirm_and_resume')}
</PrimaryButton>
Expand Down

0 comments on commit 2559af4

Please sign in to comment.