Skip to content

Commit

Permalink
flip boolean. New users should see the banner.
Browse files Browse the repository at this point in the history
  • Loading branch information
domlander committed Oct 21, 2024
1 parent e9a6c68 commit c8190b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const isNewUSUser = async () => {
// This check must happen AFTER we've ensured that the user is in the US.
const isNewUser = isFirstArticle();

return !hasUserSelectedNonUSEdition && !isNewUser;
return !hasUserSelectedNonUSEdition && isNewUser;
};

interface Props {
Expand Down

0 comments on commit c8190b4

Please sign in to comment.