From 03c1ff366fe21fbe9593e01c0aabfb19557f3600 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Thu, 16 Jan 2025 19:15:25 +0530 Subject: [PATCH] Fix --- .../photos/src/components/WatchFolder.tsx | 22 +++++++------------ 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/web/apps/photos/src/components/WatchFolder.tsx b/web/apps/photos/src/components/WatchFolder.tsx index df3986cec5..7ae61db19e 100644 --- a/web/apps/photos/src/components/WatchFolder.tsx +++ b/web/apps/photos/src/components/WatchFolder.tsx @@ -197,13 +197,13 @@ const NoWatches: React.FC = () => { - + {t("watch_folders_hint_2")} - + {t("watch_folders_hint_3")} @@ -218,18 +218,12 @@ const NoWatchesContainer = styled(VerticallyCentered)({ marginBottom: "32px", }); -const CheckmarkIcon: React.FC = () => { - return ( - ({ - display: "inline", - fontSize: "15px", - color: theme.palette.secondary.main, - })} - /> - ); -}; +const Check: React.FC = () => ( + +); interface WatchEntryProps { watch: FolderWatch;