Skip to content

Commit

Permalink
Fix: Condition for user not on appstore
Browse files Browse the repository at this point in the history
Changelog: fixed
  • Loading branch information
Boris authored and Boris committed Aug 5, 2024
1 parent 9282b08 commit 6e02b35
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 @@ export default class AppStoreBar extends React.PureComponent<Props> {
return null;
}

if (UserAgent.isNotMacMas()) {
if (!UserAgent.isNotMacMas()) {
return null;
}

Expand Down

0 comments on commit 6e02b35

Please sign in to comment.