From 10cd4adc7990bdb021bd7a57a0bb98ce7c0e5271 Mon Sep 17 00:00:00 2001 From: Hailey <153161762+haileyok@users.noreply.github.com> Date: Wed, 31 Jan 2024 12:58:27 -0800 Subject: [PATCH] set default display name to be blank (#2717) --- src/state/session/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx index ed2e6fcf..c44f96dd 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: '', } }) }