Skip to content

Commit

Permalink
fix mas banner condition
Browse files Browse the repository at this point in the history
Changelog: fixed
  • Loading branch information
antonbuks committed Feb 22, 2024
1 parent cd07e1b commit 99850e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default class MASMigrationBar extends React.PureComponent <Props> {
render() {
const {showMASBanner} = this.props;

if (showMASBanner && !isNotMacMas()) {
if (showMASBanner && isNotMacMas()) {
return (
<AnnouncementBar
type={AnnouncementBarTypes.INFOMANIAK_ADVISOR}
Expand Down

0 comments on commit 99850e5

Please sign in to comment.