1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[PM-26488][PM-26494] Disable chrome loader on MAS (#16699)

* Disable chrome loader on MAS

* Remove direct dependency on platform utils service in favour of the system

* Move check above brave condition

* Invert condition
This commit is contained in:
Oscar Hinton
2025-10-07 09:17:07 +02:00
committed by GitHub
parent 5e5813523f
commit bcc050d4de

View File

@@ -146,7 +146,8 @@ export class ImportService implements ImportServiceAbstraction {
map(([type, enabled]) => {
let loaders = availableLoaders(type, client);
let isUnsupported = false;
// Mac App Store is currently disabled due to sandboxing.
let isUnsupported = this.system.environment.isMacAppStore();
if (enabled && type === "bravecsv") {
try {