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 => {
+
} -
+ ) }