Skip to content

Commit c51a203

Browse files
authored
Merge pull request #42 from pattern-tech/fix/dict-prop-access
fix: fix dict prop access
2 parents 0f6f3b9 + bc10e34 commit c51a203

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)