Skip to content

Commit

Permalink
fix: remove default selected chain from safe creation
Browse files Browse the repository at this point in the history
  • Loading branch information
jmealy committed Sep 24, 2024
1 parent 916318f commit 36c8bb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/new-safe/create/steps/SetNameStep/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function SetNameStep({
const router = useRouter()
const currentChain = useCurrentChain()

const initialState = data.networks.length > 1 ? data.networks : currentChain ? [currentChain] : []
const initialState = data.networks
const formMethods = useForm<SetNameStepForm>({
mode: 'all',
defaultValues: {
Expand Down

0 comments on commit 36c8bb6

Please sign in to comment.