From 5e094c6066f7e8a6cf3ec8563c1828d09c519af3 Mon Sep 17 00:00:00 2001 From: John Harrington <84741727+harr1424@users.noreply.github.com> Date: Fri, 7 Nov 2025 05:43:10 -0700 Subject: [PATCH] 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. --- libs/importer/src/services/default-import-metadata.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;