Skip to content

Commit 5b5fbcf

Browse files
committedSep 23, 2024
fix: missing ?

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎frontend/context/BalanceProvider.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export const BalanceProvider = ({ children }: PropsWithChildren) => {
203203

204204
const agentEoaAddress = useMemo(
205205
() =>
206-
services?.[0].chain_configs?.[CHAINS.GNOSIS.chainId]?.chain_data
206+
services?.[0]?.chain_configs?.[CHAINS.GNOSIS.chainId]?.chain_data
207207
?.instances?.[0],
208208
[services],
209209
);

0 commit comments

Comments
 (0)
Please sign in to comment.