Skip to content

Commit

Permalink
Fixes Compatibility message for iOS users
Browse files Browse the repository at this point in the history
  • Loading branch information
championshuttler committed Mar 29, 2021
1 parent fbf2fa4 commit 74a8bd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/amo/components/WrongPlatformWarning/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class WrongPlatformWarningBase extends React.Component<InternalProps> {
if (_isFirefoxForIOS(userAgentInfo)) {
// Firefox for iOS.
message = i18n.gettext(
`This add-on is not compatible with this browser. Try installing it on Firefox for desktop.`,
`Add-ons are not compatible with Firefox for iOS. Try installing them on Firefox for desktop.`,
);
} else if (
addon &&
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/amo/components/TestWrongPlatformWarning.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ describe(__filename, () => {
const root = render();

expect(root.find('.WrongPlatformWarning-message').html()).toContain(
'This add-on is not compatible with this browser. Try installing it on Firefox for desktop.',
'Add-ons are not compatible with Firefox for iOS. Try installing them on Firefox for desktop.',
);
});

Expand Down

0 comments on commit 74a8bd7

Please sign in to comment.