From a33b5b37d92071e643a0bf78a9d6ecf29bebc65a Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Fri, 14 Oct 2022 13:11:59 +0200 Subject: [PATCH] feat: replace tooltip with toast --- .../components/share/DownloadAllButton.tsx | 28 +++++++++---------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/frontend/src/components/share/DownloadAllButton.tsx b/frontend/src/components/share/DownloadAllButton.tsx index 4449797..1bb0a14 100644 --- a/frontend/src/components/share/DownloadAllButton.tsx +++ b/frontend/src/components/share/DownloadAllButton.tsx @@ -1,6 +1,7 @@ -import { Button, Tooltip } from "@mantine/core"; +import { Button } from "@mantine/core"; import { useEffect, useState } from "react"; import shareService from "../../services/share.service"; +import toast from "../../utils/toast.util"; const DownloadAllButton = ({ shareId }: { shareId: string }) => { const [isZipReady, setIsZipReady] = useState(false); @@ -32,21 +33,18 @@ const DownloadAllButton = ({ shareId }: { shareId: string }) => { }; }, []); - if (!isZipReady) - return ( - - - - ); return ( - );