diff --git a/src/zen/common/sys/ZenUIMigration.sys.mjs b/src/zen/common/sys/ZenUIMigration.sys.mjs index 1d6a8a7a7..1c6cac68e 100644 --- a/src/zen/common/sys/ZenUIMigration.sys.mjs +++ b/src/zen/common/sys/ZenUIMigration.sys.mjs @@ -12,7 +12,7 @@ ChromeUtils.defineESModuleGetters(lazy, { class nsZenUIMigration { PREF_NAME = "zen.ui.migration.version"; - MIGRATION_VERSION = 7; + MIGRATION_VERSION = 6; init(isNewProfile) { if (!isNewProfile) { @@ -127,10 +127,6 @@ class nsZenUIMigration { }, 1000); }); } - - _migrateV7() { - Services.prefs.setBoolPref("zen.window-sync.sync-only-pinned-tabs", true); - } } export var gZenUIMigration = new nsZenUIMigration();