Skip to content

Commit

Permalink
fix boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
jerader committed Feb 12, 2024
1 parent 5586283 commit a96f1db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/organisms/AnalyticsSettingsModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function AnalyticsSettingsModal(): JSX.Element | null {
dispatch(toggleAnalyticsOptedIn())
}

return seen || !hasOptedIn ? (
return !seen || !hasOptedIn ? (
<LegacyModal
title={
<StyledText css={TYPOGRAPHY.h3SemiBold}>
Expand Down

0 comments on commit a96f1db

Please sign in to comment.