1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-05 10:03:21 +00:00

PM-27883-Defect-Windows-Edge-browser-importer-is-not-enabled (#17260)

* remove edge from unsupported browser list

* Clarify comment for CSV import handling

Updated comment to clarify supported browsers for CSV imports.

(cherry picked from commit 5e094c6066)
This commit is contained in:
John Harrington
2025-11-07 05:43:10 -07:00
committed by Hinton
parent 6dfc8af46d
commit 4463ae2d9f

View File

@@ -69,8 +69,8 @@ export class DefaultImportMetadataService implements ImportMetadataServiceAbstra
return loaders;
}
// Special handling for Brave, Chrome, and Edge CSV imports on Windows Desktop
if (type === "bravecsv" || type === "chromecsv" || type === "edgecsv") {
// Special handling for Brave and Chrome CSV imports on Windows Desktop
if (type === "bravecsv" || type === "chromecsv") {
try {
const device = this.system.environment.getDevice();
const isWindowsDesktop = device === DeviceType.WindowsDesktop;