Skip to content

Commit

Permalink
Remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed Mar 28, 2024
1 parent 2c7f7de commit acb4008
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/pages/DaoHierarchy/DaoNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export function DaoNode({
const {
node: { daoAddress: currentDAOAddress }, // used ONLY to determine if we're on the current DAO
} = useFractal();
const { addressPrefix } = useNetworkConfig();

const isCurrentDAO = daoAddress === currentDAOAddress;

Expand Down Expand Up @@ -82,7 +81,7 @@ export function DaoNode({
}
});
}
}, [loadDao, daoAddress, fractalNode, depth, addressPrefix]);
}, [loadDao, daoAddress, fractalNode, depth]);

return (
<Box position="relative">
Expand Down

0 comments on commit acb4008

Please sign in to comment.