Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed May 31, 2024
1 parent 514b198 commit 3402655
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/hooks/useMyVaults.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import useSWR from "swr";

export const useMyVaults = () => {
return useSWR();
return useSWR("/my/vaults", async () => {
// TODO: Implement
return ["0x1234", "0x5678"];
});
};

0 comments on commit 3402655

Please sign in to comment.