about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorHailey <153161762+haileyok@users.noreply.github.com>2024-01-31 12:58:27 -0800
committerGitHub <noreply@github.com>2024-01-31 12:58:27 -0800
commit10cd4adc7990bdb021bd7a57a0bb98ce7c0e5271 (patch)
tree11294e055a319fcfb92ed91185416cdef4491b47 /src
parentdfc5a03eb5608aba68aa295082fc7c421f38463e (diff)
downloadvoidsky-10cd4adc7990bdb021bd7a57a0bb98ce7c0e5271.tar.zst
set default display name to be blank (#2717)
Diffstat (limited to 'src')
-rw-r--r--src/state/session/index.tsx2
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: '',
           }
         })
       }