diff --git a/src/components/layouts/main-layout.tsx b/src/components/layouts/main-layout.tsx index db6c261..dd2aa2c 100644 --- a/src/components/layouts/main-layout.tsx +++ b/src/components/layouts/main-layout.tsx @@ -21,7 +21,7 @@ const MainLayout = () => { } contentClassName="flex flex-col overflow-hidden" > diff --git a/src/pages/buckets/manage/browse/object-actions.tsx b/src/pages/buckets/manage/browse/object-actions.tsx index a382804..acbff32 100644 --- a/src/pages/buckets/manage/browse/object-actions.tsx +++ b/src/pages/buckets/manage/browse/object-actions.tsx @@ -13,9 +13,10 @@ import { shareDialog } from "./share-dialog"; type Props = { prefix?: string; object: Pick; + end?: boolean; }; -const ObjectActions = ({ prefix = "", object }: Props) => { +const ObjectActions = ({ prefix = "", object, end }: Props) => { const { bucketName } = useBucketContext(); const queryClient = useQueryClient(); const isDirectory = object.objectKey.endsWith("/"); @@ -45,12 +46,12 @@ const ObjectActions = ({ prefix = "", object }: Props) => {