diff --git a/web/apps/photos/src/services/typeDetectionService.ts b/web/apps/photos/src/services/typeDetectionService.ts index 6ba76960b..53c27205f 100644 --- a/web/apps/photos/src/services/typeDetectionService.ts +++ b/web/apps/photos/src/services/typeDetectionService.ts @@ -64,7 +64,7 @@ export async function getFileType( throw Error(CustomError.UNSUPPORTED_FILE_FORMAT); } log.error(`type detection failed for format ${fileFormat}`, e); - throw Error(CustomError.TYPE_DETECTION_FAILED(fileFormat)); + throw new Error(`type detection failed ${fileFormat}`); } } diff --git a/web/packages/shared/error/index.ts b/web/packages/shared/error/index.ts index 736520b49..c9cc6c193 100644 --- a/web/packages/shared/error/index.ts +++ b/web/packages/shared/error/index.ts @@ -56,8 +56,6 @@ export const CustomError = { HIDDEN_COLLECTION_SYNC_FILE_ATTEMPTED: "hidden collection sync file attempted", UNKNOWN_ERROR: "Something went wrong, please try again", - TYPE_DETECTION_FAILED: (fileFormat: string) => - `type detection failed ${fileFormat}`, WINDOWS_NATIVE_IMAGE_PROCESSING_NOT_SUPPORTED: "Windows native image processing is not supported", NETWORK_ERROR: "Network Error",