Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Feb 28, 2024
1 parent 9385e5a commit 0702705
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/user/src/pages/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export const Main = () => {

useEffect(() => {
getProjects()
.then((res) => setProjects(res.data))
.catch((err) => console.log(err));
.then((res: any) => setProjects(res.data))
.catch((err: any) => console.log(err));
}, []);

return (
Expand Down

0 comments on commit 0702705

Please sign in to comment.