From 5e5560b558ff818546c94135bebf334be770c920 Mon Sep 17 00:00:00 2001 From: Michael Hunteman Date: Sat, 9 Mar 2024 15:13:45 -0800 Subject: Add carousel --- src/components/Admin.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/components/Admin.tsx') diff --git a/src/components/Admin.tsx b/src/components/Admin.tsx index bd1545d..a3da3fa 100644 --- a/src/components/Admin.tsx +++ b/src/components/Admin.tsx @@ -6,17 +6,17 @@ function Admin() { isLoading, isSuccess, isError, - error + error, } = useGetGuestsQuery(); let content; if (isLoading) { - content =

Loading...

+ content =

Loading...

; } else if (isSuccess) { content = JSON.stringify(guests); } else if (isError) { - content = <>{error.toString()} + content = <>{error.toString()}; } return ( -- cgit v1.2.3