Skip to content

Commit

Permalink
Merge branch 'fix-condition-mac-banner-update' into 'master'
Browse files Browse the repository at this point in the history
Fix: Condition for user not on appstore

See merge request kchat/webapp!865
  • Loading branch information
antonbuks committed Aug 5, 2024
2 parents 9282b08 + 6e02b35 commit 23f950f
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 23f950f

Please sign in to comment.