Skip to content

Commit

Permalink
turn enableCipherKeyEncryption flag off (#10621)
Browse files Browse the repository at this point in the history
  • Loading branch information
merissaacosta committed Sep 4, 2024
1 parent e08c7d9 commit eea71ae
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion apps/browser/config/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"devFlags": {},
"flags": {
"showPasswordless": true,
"enableCipherKeyEncryption": true,
"enableCipherKeyEncryption": false,
"accountSwitching": false
}
}
2 changes: 1 addition & 1 deletion apps/browser/config/development.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"flags": {
"showPasswordless": true,
"enableCipherKeyEncryption": true,
"enableCipherKeyEncryption": false,
"accountSwitching": true
}
}
2 changes: 1 addition & 1 deletion apps/browser/config/production.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"flags": {
"enableCipherKeyEncryption": true,
"enableCipherKeyEncryption": false,
"accountSwitching": true
}
}
2 changes: 1 addition & 1 deletion apps/cli/config/development.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"flags": {
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
}
}
2 changes: 1 addition & 1 deletion apps/cli/config/production.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"flags": {
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
}
}
2 changes: 1 addition & 1 deletion apps/desktop/config/base.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"devFlags": {},
"flags": {
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
}
}
2 changes: 1 addition & 1 deletion apps/desktop/config/development.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"devFlags": {},
"flags": {
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
}
}
2 changes: 1 addition & 1 deletion apps/desktop/config/production.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"flags": {
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
}
}
2 changes: 1 addition & 1 deletion apps/web/config/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
},
"flags": {
"showPasswordless": false,
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
}
}
2 changes: 1 addition & 1 deletion apps/web/config/cloud.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
},
"flags": {
"showPasswordless": true,
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
}
}
2 changes: 1 addition & 1 deletion apps/web/config/development.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"flags": {
"showPasswordless": true,
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
},
"devFlags": {}
}
2 changes: 1 addition & 1 deletion apps/web/config/euprd.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
},
"flags": {
"showPasswordless": true,
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
}
}
2 changes: 1 addition & 1 deletion apps/web/config/qa.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
],
"flags": {
"showPasswordless": true,
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
}
}
2 changes: 1 addition & 1 deletion apps/web/config/selfhosted.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
},
"flags": {
"showPasswordless": true,
"enableCipherKeyEncryption": true
"enableCipherKeyEncryption": false
}
}

0 comments on commit eea71ae

Please sign in to comment.