Temporarily hide engagement survey and bump version

This commit is contained in:
Lesley Norton
2025-10-17 12:19:00 -05:00
parent c34c1c1e04
commit b4ad47bf04
2 changed files with 13 additions and 8 deletions
+1 -1
View File
@@ -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.1",
"version": "8.3.2",
"author": "Andrea Marchesini, Luke Crouch, Lesley Norton, Kendall Werts, Maxx Crawford, Jonathan Kingston",
"bugs": {
"url": "https://github.com/mozilla/multi-account-containers/issues"
+12 -7
View File
@@ -143,13 +143,18 @@ const Logic = {
const pending = achievementsStorage.achievements.filter(a => !a.done);
if (pending.length) {
// 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 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;
// }
this.showPanel(P_CONTAINERS_ACHIEVEMENT);
return;