Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenlejoe committed Dec 13, 2023
1 parent d73fa92 commit 1871ad0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/Organisms/NFTs/NFTDetailView/NFTDetailView.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { Separator } from "@/components/ui/separator";
import { TypographyH1, TypographyH4 } from "@/components/ui/typography";
import { useCovalent } from "@/utils/store/Covalent";
import { NFTSalesCountView } from "@/components/Molecules/NFTs/NFTSalesCountView/NFTSalesCountView";
Expand Down Expand Up @@ -40,7 +39,7 @@ export const NFTDetailView: React.FC<NFTDetailViewProps> = ({
</TypographyH1>

<div className="mt-4 flex gap-4">
<div className="rounded border max-w-[30rem] ">
<div className="max-w-[30rem] rounded border ">
<img
className="rounded-t"
src={result.nft_data.external_data.image_512}
Expand Down Expand Up @@ -68,7 +67,7 @@ export const NFTDetailView: React.FC<NFTDetailViewProps> = ({
</div>
</div>
</div>
<div className=" flex flex-col w-full gap-4">
<div className=" flex w-full flex-col gap-4">
<div className="">
<NFTSalesCountView
chain_name={chain_name}
Expand All @@ -85,7 +84,6 @@ export const NFTDetailView: React.FC<NFTDetailViewProps> = ({
</div>
</div>
</div>

</div>
);
},
Expand Down

0 comments on commit 1871ad0

Please sign in to comment.