Revert "Temporarily hide engagement survey and bump version"

This reverts commit b4ad47bf04.
This commit is contained in:
Lesley Norton
2025-10-17 12:30:08 -05:00
parent b4ad47bf04
commit 35956f132a
2 changed files with 8 additions and 13 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "testpilot-containers", "name": "testpilot-containers",
"title": "Multi-Account 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.", "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", "author": "Andrea Marchesini, Luke Crouch, Lesley Norton, Kendall Werts, Maxx Crawford, Jonathan Kingston",
"bugs": { "bugs": {
"url": "https://github.com/mozilla/multi-account-containers/issues" "url": "https://github.com/mozilla/multi-account-containers/issues"
+7 -12
View File
@@ -143,18 +143,13 @@ const Logic = {
const pending = achievementsStorage.achievements.filter(a => !a.done); const pending = achievementsStorage.achievements.filter(a => !a.done);
if (pending.length) { if (pending.length) {
// Prefer showing the survey view first if present, otherwise fall back
// This block is commented out until v8.3.3, when a new // to the existing achievement panel.
// survey message will be implemented. const survey = pending.find(a => a.name === "survey");
if (survey) {
// // Prefer showing the survey view first if present, otherwise fall back this.showPanel(P_SURVEY_ACHIEVEMENT);
// // to the existing achievement panel. return;
// const survey = pending.find(a => a.name === "survey"); }
// if (survey) {
// this.showPanel(P_SURVEY_ACHIEVEMENT);
// return;
// }
this.showPanel(P_CONTAINERS_ACHIEVEMENT); this.showPanel(P_CONTAINERS_ACHIEVEMENT);
return; return;