Skip to content

Commit

Permalink
Update BuildersList.tsx
Browse files Browse the repository at this point in the history
Add an additional dependency to useEffect
  • Loading branch information
phipsae authored Nov 4, 2024
1 parent 18c7775 commit 88d97d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/components/BuildersList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default function Page({ builderProfiles }: { builderProfiles: string[] })
};

fetchBuilders().catch(console.error);
}, [events]);
}, [events, builderProfiles]);

return (
<div>
Expand Down

0 comments on commit 88d97d2

Please sign in to comment.