Skip to content

Commit

Permalink
fix: invert flag
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacook committed Aug 28, 2023
1 parent 17b5686 commit b25d39a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/tx-flow/flows/SuccessScreen/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const SuccessScreen = ({ txId }: { txId: string }) => {
}, [txHash])

useEffect(() => {
if (typeof window !== 'undefined' && !window.Beamer?.shouldShowNPS()) {
if (typeof window !== 'undefined' && window.Beamer?.shouldShowNPS()) {
window.Beamer?.forceShowNPS()
}
}, [])
Expand Down

0 comments on commit b25d39a

Please sign in to comment.