Skip to content

Commit

Permalink
refactor: asset page home button
Browse files Browse the repository at this point in the history
  • Loading branch information
Zafei-Erin committed Mar 5, 2024
1 parent 75641a2 commit 13752f8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/src/pages/MyAssets/Collected.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { useWallet } from "@/context/walletProvider";
import { NFT } from "@/types/types";
import { ListModal } from "../../components/ListModal";
import { UpdateListingModal } from "../../components/UpdateListingModal";
import { Button } from "@/components/ui/button";

const apiURL = import.meta.env.VITE_API_URL;

Expand Down Expand Up @@ -42,9 +43,9 @@ export const Collected = () => {
You haven't collected any NFT yet.
</p>
<Link to="/">
<button className="rounded-lg bg-sky-600 px-2 py-1 text-lg text-white transition-all hover:bg-sky-700">
<Button className="rounded-lg bg-sky-600 text-lg text-white transition-all hover:bg-sky-700">
Home
</button>
</Button>
</Link>
</div>
);
Expand Down

0 comments on commit 13752f8

Please sign in to comment.