Skip to content

Commit

Permalink
switch around reject and agree button text
Browse files Browse the repository at this point in the history
  • Loading branch information
jerader committed Oct 23, 2024
1 parent f2df484 commit b1758f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions protocol-designer/src/organisms/GateModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ export function GateModal(): JSX.Element | null {
onClick={() => dispatch(analyticsActions.optOut())}
>
<StyledText desktopStyle="bodyDefaultRegular">
{t('agree')}
{t('reject')}
</StyledText>
</SecondaryButton>
<PrimaryButton onClick={() => dispatch(analyticsActions.optIn())}>
<StyledText desktopStyle="bodyDefaultRegular">
{t('reject')}
{t('agree')}
</StyledText>
</PrimaryButton>
</Flex>
Expand Down

0 comments on commit b1758f8

Please sign in to comment.