Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 0073dd5

Browse files
fix: Fix types
1 parent d662795 commit 0073dd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql_api/types/user/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def resolve_student_updated_at(
4848

4949
# this will no longer be updated from the UI
5050
@user_bindable.field("customerIntent")
51-
def resolve_customer_intent(user: Owner, info: GraphQLResolveInfo) -> str:
51+
def resolve_customer_intent(user: Owner, info: GraphQLResolveInfo) -> Optional[str]:
5252
owner = user
5353
if not owner.user:
5454
return None

0 commit comments

Comments
 (0)