From e7559fa89645292447dad8fda47473da02e44543 Mon Sep 17 00:00:00 2001 From: Salah Al Saleh Date: Fri, 12 Jul 2024 19:45:26 +0000 Subject: [PATCH] fix store metadata type --- web/src/components/snapshots/SnapshotStorageDestination.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/components/snapshots/SnapshotStorageDestination.tsx b/web/src/components/snapshots/SnapshotStorageDestination.tsx index ba0ef68bda..2f4b4a4d86 100644 --- a/web/src/components/snapshots/SnapshotStorageDestination.tsx +++ b/web/src/components/snapshots/SnapshotStorageDestination.tsx @@ -164,8 +164,8 @@ type StoreMetadata = { azure?: undefined; other?: undefined; bucket?: string; - internal?: undefined; - fileSystem?: undefined; + internal?: boolean; + fileSystem?: string; path?: string; };