From 69c74f3f03a1732cf46eb1b8a082a7b2fe89e7c6 Mon Sep 17 00:00:00 2001 From: danilo-89 Date: Sat, 20 Apr 2024 19:03:13 +0200 Subject: [PATCH] component name and styles updated --- components/NFTGallery/NFTGallery.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/components/NFTGallery/NFTGallery.tsx b/components/NFTGallery/NFTGallery.tsx index 57e3df7..ba2af1f 100644 --- a/components/NFTGallery/NFTGallery.tsx +++ b/components/NFTGallery/NFTGallery.tsx @@ -20,7 +20,7 @@ interface IProps { setIsOpen: Dispatch> | (() => void) } -function NFTGalery({ setIsOpen }: IProps) { +function NFTGallery({ setIsOpen }: IProps) { const { address } = useAccount() const [nftData, setNftData] = useState(null) @@ -60,11 +60,10 @@ function NFTGalery({ setIsOpen }: IProps) {

- + Welcome to your SittingCats NFT collection showcase. - {isLoading || isFetching ? ( Hang on for a quick moment as we track down your @@ -140,4 +139,4 @@ function NFTGalery({ setIsOpen }: IProps) { ) } -export default NFTGalery +export default NFTGallery