1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-19 19:04:01 +00:00

fix(token-service) [PM-15333]: Portable App Is Not Portable (#17781)

* feat(token-service) [PM-15333]: Update Portable secure storage resolution to use disk.

* feat(token-service) [PM-15333]: Move isWindowsPortable evaluation to preload with other platform evaluations.
This commit is contained in:
Dave
2025-12-11 15:03:10 -05:00
committed by jaasen-livefront
parent f42a02a1cb
commit 2b94cbbfc9
3 changed files with 22 additions and 4 deletions

View File

@@ -17,6 +17,7 @@ import {
isFlatpak,
isMacAppStore,
isSnapStore,
isWindowsPortable,
isWindowsStore,
} from "../utils";
@@ -133,6 +134,7 @@ export default {
isDev: isDev(),
isMacAppStore: isMacAppStore(),
isWindowsStore: isWindowsStore(),
isWindowsPortable: isWindowsPortable(),
isFlatpak: isFlatpak(),
isSnapStore: isSnapStore(),
isAppImage: isAppImage(),