From 49f85918abb402b9a42f2bcddb6887d8dbe6f707 Mon Sep 17 00:00:00 2001 From: "ste.vaidis" Date: Fri, 13 Jan 2023 16:50:47 +0200 Subject: [PATCH] fix box error --- Front/src/coinList/coinList.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Front/src/coinList/coinList.tsx b/Front/src/coinList/coinList.tsx index 54c8225..54cc0bf 100644 --- a/Front/src/coinList/coinList.tsx +++ b/Front/src/coinList/coinList.tsx @@ -27,7 +27,7 @@ const CoinList = (): JSX.Element => { const { data: globalData, isLoading: globalIsLoading, isSuccess: lobalSuccess } = useGetGlobalQuery(); return ( - + <> {isLoading || globalIsLoading &&
Loading...
} { globalData && @@ -38,6 +38,7 @@ const CoinList = (): JSX.Element => { } { data && isSuccess && + @@ -116,9 +117,10 @@ const CoinList = (): JSX.Element => {
+
} -
+ ) }