diff --git a/libs/importer/src/services/default-import-metadata.service.ts b/libs/importer/src/services/default-import-metadata.service.ts index e9c526fb6c0..393c498e118 100644 --- a/libs/importer/src/services/default-import-metadata.service.ts +++ b/libs/importer/src/services/default-import-metadata.service.ts @@ -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;