Skip to content

Commit

Permalink
fix: show network when activating a safe (#4199)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmealy authored Sep 19, 2024
1 parent 99b0cb1 commit c81e54d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/components/new-safe/create/steps/ReviewStep/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ export const SafeSetupOverview = ({
threshold: number
networks: ChainInfo[]
}) => {
const chain = useCurrentChain()

return (
<Grid container spacing={3}>
<ReviewRow
Expand Down
2 changes: 1 addition & 1 deletion src/features/counterfactual/ActivateAccountFlow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const ActivateAccountFlow = () => {
<SafeSetupOverview
owners={owners.map((owner) => ({ name: '', address: owner }))}
threshold={threshold}
networks={[]}
networks={chain ? [chain] : []}
/>

<Divider sx={{ mx: -3, mt: 2, mb: 1 }} />
Expand Down

0 comments on commit c81e54d

Please sign in to comment.