Skip to content

Commit

Permalink
Fix rerender issue in getter/receiver on redeploy
Browse files Browse the repository at this point in the history
Resolves #18
  • Loading branch information
rahulyadav-57 committed Apr 22, 2024
1 parent b4a7817 commit 712f4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/workspace/BuildProject/BuildProject.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ const BuildProject: FC<Props> = ({

useEffect(() => {
updateABI();
}, [selectedContract]);
}, [selectedContract, contract]);

useEffect(() => {
const handler = (
Expand Down

0 comments on commit 712f4a1

Please sign in to comment.