Skip to content

Commit

Permalink
Hide "What's new banner" in incognito mode
Browse files Browse the repository at this point in the history
  • Loading branch information
tprouvot committed Sep 5, 2024
1 parent 29b1805 commit 3b0c6b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Version 1.25

- Hide "What's new banner" in incognito mode [feature 517](https://github.com/tprouvot/Salesforce-Inspector-reloaded/issues/517)
- Persist selected tab when reloading Options page.
- Add button in Options page to reset API Version to extension's default [feature 541](https://github.com/tprouvot/Salesforce-Inspector-reloaded/issues/541)
- Enable Salesforce Inspector Reloaded on Debug flow page [feature 552](https://github.com/tprouvot/Salesforce-Inspector-reloaded/issues/552) request by [Andrew Russo](https://github.com/mavtron-andrewrusso)
Expand Down
2 changes: 1 addition & 1 deletion addon/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class App extends React.PureComponent {
exportHref: "data-export.html?" + hostArg,
importHref: "data-import.html?" + hostArg,
limitsHref: "limits.html?" + hostArg,
latestNotesViewed: localStorage.getItem("latestReleaseNotesVersionViewed") === this.props.addonVersion
latestNotesViewed: localStorage.getItem("latestReleaseNotesVersionViewed") === this.props.addonVersion || browser.extension.inIncognitoContext
};
this.onContextUrlMessage = this.onContextUrlMessage.bind(this);
this.onShortcutKey = this.onShortcutKey.bind(this);
Expand Down

0 comments on commit 3b0c6b3

Please sign in to comment.