Skip to content

Commit

Permalink
Added skip for version 4.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dharmesh-hemaram committed May 28, 2024
1 parent 08cde77 commit dc6833a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/acf-extension/src/background/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ try {
const { settings } = await chrome.storage.local.get(LOCAL_STORAGE_KEY.SETTINGS);
if (details.reason === 'update' && settings?.suppressWhatsNew !== true) {
const { version } = chrome.runtime.getManifest();
if (!/4.0.(9)/.test(version)) {
if (!/4.0.(8)/.test(version)) {
TabsMessenger.optionsTab({ url: `${OPTIONS_PAGE_URL}?version=${version}` });
}
} else if (details.reason === 'install') {
Expand Down

0 comments on commit dc6833a

Please sign in to comment.