This commit is contained in:
Manav Rathi 2025-02-14 17:56:38 +05:30
parent 4670be9bba
commit db26923d68
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -20,6 +20,7 @@ import { fileLogID, type EnteFile } from "@/media/file";
import { FileType } from "@/media/file-type"; import { FileType } from "@/media/file-type";
import { isHEICExtension, needsJPEGConversion } from "@/media/formats"; import { isHEICExtension, needsJPEGConversion } from "@/media/formats";
import { ConfirmDeleteFileDialog } from "@/new/photos/components/FileViewer"; import { ConfirmDeleteFileDialog } from "@/new/photos/components/FileViewer";
import { ImageEditorOverlay } from "@/new/photos/components/ImageEditorOverlay";
import { moveToTrash } from "@/new/photos/services/collection"; import { moveToTrash } from "@/new/photos/services/collection";
import { extractRawExif, parseExif } from "@/new/photos/services/exif"; import { extractRawExif, parseExif } from "@/new/photos/services/exif";
import { usePhotosAppContext } from "@/new/photos/types/context"; import { usePhotosAppContext } from "@/new/photos/types/context";
@ -75,7 +76,6 @@ import {
getFileFromURL, getFileFromURL,
} from "utils/file"; } from "utils/file";
import { PublicCollectionGalleryContext } from "utils/publicCollectionGallery"; import { PublicCollectionGalleryContext } from "utils/publicCollectionGallery";
import { ImageEditorOverlay } from "./ImageEditorOverlay";
export type PhotoViewerProps = Pick< export type PhotoViewerProps = Pick<
PhotoFrameProps, PhotoFrameProps,

View File

@ -14,7 +14,7 @@ import log from "@/base/log";
import { downloadAndRevokeObjectURL } from "@/base/utils/web"; import { downloadAndRevokeObjectURL } from "@/base/utils/web";
import { downloadManager } from "@/gallery/services/download"; import { downloadManager } from "@/gallery/services/download";
import type { Collection } from "@/media/collection"; import type { Collection } from "@/media/collection";
import { EnteFile } from "@/media/file"; import type { EnteFile } from "@/media/file";
import { aboveFileViewerContentZ } from "@/new/photos/components/utils/z-index"; import { aboveFileViewerContentZ } from "@/new/photos/components/utils/z-index";
import { getLocalCollections } from "@/new/photos/services/collections"; import { getLocalCollections } from "@/new/photos/services/collections";
import { CenteredFlex } from "@ente/shared/components/Container"; import { CenteredFlex } from "@ente/shared/components/Container";