From fb9d541ad9eaed023bab73b2cc3bb3acdbb14557 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Sat, 27 May 2023 15:42:39 +0530 Subject: [PATCH] Remove extra attributes --- apps/photos/src/types/file/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/photos/src/types/file/index.ts b/apps/photos/src/types/file/index.ts index 0684b4b50..ffcf99587 100644 --- a/apps/photos/src/types/file/index.ts +++ b/apps/photos/src/types/file/index.ts @@ -8,11 +8,9 @@ import { Metadata } from 'types/upload'; export interface MetadataFileAttributes { encryptedData: string; decryptionHeader: string; - objectKey?: string; } export interface S3FileAttributes { objectKey: string; - encryptedData?: string; decryptionHeader: string; }