diff options
author | Hailey <153161762+haileyok@users.noreply.github.com> | 2024-01-31 12:58:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 12:58:27 -0800 |
commit | 10cd4adc7990bdb021bd7a57a0bb98ce7c0e5271 (patch) | |
tree | 11294e055a319fcfb92ed91185416cdef4491b47 | |
parent | dfc5a03eb5608aba68aa295082fc7c421f38463e (diff) | |
download | voidsky-10cd4adc7990bdb021bd7a57a0bb98ce7c0e5271.tar.zst |
set default display name to be blank (#2717)
-rw-r--r-- | src/state/session/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx index ed2e6fcf1..c44f96dd6 100644 --- a/src/state/session/index.tsx +++ b/src/state/session/index.tsx @@ -236,7 +236,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { if (!deactivated) { /*dont await*/ agent.upsertProfile(_existing => { return { - displayName: handle, + displayName: '', } }) } |