From 35956f132abb255dee81ca7b7e682f8dd6c9e7ab Mon Sep 17 00:00:00 2001 From: Lesley Norton Date: Fri, 17 Oct 2025 12:30:08 -0500 Subject: [PATCH] Revert "Temporarily hide engagement survey and bump version" This reverts commit b4ad47bf0455188283c008ba97bb384a8b772779. --- package.json | 2 +- src/js/popup.js | 19 +++++++------------ 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index b0911f8..c92a48f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "testpilot-containers", "title": "Multi-Account Containers", "description": "Containers helps you keep all the parts of your online life contained in different tabs. Custom labels and color-coded tabs help keep different activities — like online shopping, travel planning, or checking work email — separate.", - "version": "8.3.2", + "version": "8.3.1", "author": "Andrea Marchesini, Luke Crouch, Lesley Norton, Kendall Werts, Maxx Crawford, Jonathan Kingston", "bugs": { "url": "https://github.com/mozilla/multi-account-containers/issues" diff --git a/src/js/popup.js b/src/js/popup.js index 0ba2ff4..bc6529a 100644 --- a/src/js/popup.js +++ b/src/js/popup.js @@ -143,18 +143,13 @@ const Logic = { const pending = achievementsStorage.achievements.filter(a => !a.done); if (pending.length) { - - // This block is commented out until v8.3.3, when a new - // survey message will be implemented. - - // // Prefer showing the survey view first if present, otherwise fall back - // // to the existing achievement panel. - // const survey = pending.find(a => a.name === "survey"); - - // if (survey) { - // this.showPanel(P_SURVEY_ACHIEVEMENT); - // return; - // } + // Prefer showing the survey view first if present, otherwise fall back + // to the existing achievement panel. + const survey = pending.find(a => a.name === "survey"); + if (survey) { + this.showPanel(P_SURVEY_ACHIEVEMENT); + return; + } this.showPanel(P_CONTAINERS_ACHIEVEMENT); return;