Skip to content

Commit

Permalink
Fix multiple fetch issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin-Umali committed Oct 11, 2023
1 parent 281c3e3 commit 7f71c49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/project-detail/[id]/project-detail-by-id.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function ProjectDetailById({ params }: { params: { id: string } }
}

fetchData();
}, [params.id, project, toast]);
}, [params.id, toast]);

return (
<div className="container mx-auto py-5 sm:py-10">
Expand Down

1 comment on commit 7f71c49

@Kevin-Umali
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hot fix

Please sign in to comment.