From 05c78044218fc1563c8451501774a397d649b606 Mon Sep 17 00:00:00 2001 From: keannu125 Date: Sat, 4 Mar 2023 21:37:15 +0800 Subject: [PATCH] Fixed harmless icon svg errors --- src/Components/AppIcon/AppIcon.tsx | 6 +++--- src/Components/HomeIcon/HomeIcon.tsx | 6 +++--- src/Components/Notes/Notes.tsx | 14 +++++++------- src/Routes/Home/Home.tsx | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/Components/AppIcon/AppIcon.tsx b/src/Components/AppIcon/AppIcon.tsx index 78e60e2..5d1afa7 100644 --- a/src/Components/AppIcon/AppIcon.tsx +++ b/src/Components/AppIcon/AppIcon.tsx @@ -9,11 +9,11 @@ export default function AppIcon(props: IconProps) { width={props.size + "px"} height={props.size + "px"} viewBox="0 0 24 24" - stroke-width="2" + strokeWidth="2" stroke={props.color} fill="none" - stroke-linecap="round" - stroke-linejoin="round" + strokeLinecap="round" + strokeLinejoin="round" > diff --git a/src/Components/HomeIcon/HomeIcon.tsx b/src/Components/HomeIcon/HomeIcon.tsx index 303e4f5..3c5a30c 100644 --- a/src/Components/HomeIcon/HomeIcon.tsx +++ b/src/Components/HomeIcon/HomeIcon.tsx @@ -24,11 +24,11 @@ export default function HomeIcon(props: IconProps) { width={props.size - 4 + "px"} height={props.size - 4 + "px"} viewBox="0 0 24 24" - stroke-width="2" + strokeWidth="2" stroke={props.color} fill="none" - stroke-linecap="round" - stroke-linejoin="round" + strokeLinecap="round" + strokeLinejoin="round" > diff --git a/src/Components/Notes/Notes.tsx b/src/Components/Notes/Notes.tsx index cee1589..2fd6689 100644 --- a/src/Components/Notes/Notes.tsx +++ b/src/Components/Notes/Notes.tsx @@ -16,13 +16,6 @@ export default function Notes() { error, } = useQuery("notes", GetNotes, { retry: 0 }); const logged_in = useSelector((state: LoginState) => state.Login.logged_in); - if (!logged_in) { - return ( -
-

Please login to use Clip Notes

-
- ); - } if (error) { return (
@@ -35,6 +28,13 @@ export default function Notes() {

Loading Notes...

); + } + if (!logged_in) { + return ( +
+

Please login to use Clip Notes

+
+ ); } else if (notes.length === 0) { return (
diff --git a/src/Routes/Home/Home.tsx b/src/Routes/Home/Home.tsx index a967ab8..ddc9770 100644 --- a/src/Routes/Home/Home.tsx +++ b/src/Routes/Home/Home.tsx @@ -1,11 +1,11 @@ import styles from "../../styles"; import Header from "../../Components/Header/Header"; -import NoteMapper from "../../Components/Notes/Notes"; +import Notes from "../../Components/Notes/Notes"; export default function Home() { return (
- +
); }