1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +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.
This commit is contained in:
John Harrington
2025-11-07 05:43:10 -07:00
committed by GitHub
parent 4bf90b0fb3
commit 5e094c6066

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;