Skip to content

Commit bc10e34

Browse files
committed
fix: fix dict prop access
1 parent fa676c3 commit bc10e34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: api/src/auth/routers/auth_router.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def verify(input: VerifyInput):
8080
input.message, input.signature)
8181

8282
payload = {"id": "{}:{}".format(
83-
verification_result.chain_id, verification_result.address)}
83+
verification_result["chain_id"], verification_result["address"])}
8484

8585
token = generate_access_token(data=payload)
8686
return global_response(

0 commit comments

Comments
 (0)