diff --git a/apps/desktop/src/app/layout/user-layout.component.html b/apps/desktop/src/app/layout/user-layout.component.html
index ff3ba579425..91fa0a14f19 100644
--- a/apps/desktop/src/app/layout/user-layout.component.html
+++ b/apps/desktop/src/app/layout/user-layout.component.html
@@ -2,7 +2,7 @@
-
+
diff --git a/apps/desktop/src/locales/en/messages.json b/apps/desktop/src/locales/en/messages.json
index 6bef882d970..f6f078611c9 100644
--- a/apps/desktop/src/locales/en/messages.json
+++ b/apps/desktop/src/locales/en/messages.json
@@ -2228,6 +2228,10 @@
"contactInfo": {
"message": "Contact information"
},
+ "send": {
+ "message": "Send",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"allSends": {
"message": "All Sends",
"description": "'Sends' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
@@ -2991,7 +2995,8 @@
"message": "Are you sure you want to use the \"Never\" option? Setting your lock options to \"Never\" stores your vault's encryption key on your device. If you use this option you should ensure that you keep your device properly protected."
},
"vault": {
- "message": "Vault"
+ "message": "Vault",
+ "description": "'Vault' is a noun and refers to the Bitwarden Vault feature."
},
"loginWithMasterPassword": {
"message": "Log in with master password"
diff --git a/libs/common/src/enums/feature-flag.enum.ts b/libs/common/src/enums/feature-flag.enum.ts
index 068a8f1e410..47bb3f33c4a 100644
--- a/libs/common/src/enums/feature-flag.enum.ts
+++ b/libs/common/src/enums/feature-flag.enum.ts
@@ -166,6 +166,9 @@ export function getFeatureFlagValue(
serverConfig: ServerConfig | null,
flag: Flag,
) {
+ if (flag === FeatureFlag.DesktopUiMigrationMilestone1) {
+ return true;
+ }
if (serverConfig?.featureStates == null || serverConfig.featureStates[flag] == null) {
return DefaultFeatureFlagValue[flag];
}