about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/state/session/index.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx
index c44f96dd6..b555a997b 100644
--- a/src/state/session/index.tsx
+++ b/src/state/session/index.tsx
@@ -237,6 +237,12 @@ export function Provider({children}: React.PropsWithChildren<{}>) {
         /*dont await*/ agent.upsertProfile(_existing => {
           return {
             displayName: '',
+
+            // HACKFIX
+            // creating a bunch of identical profile objects is breaking the relay
+            // tossing this unspecced field onto it to reduce the size of the problem
+            // -prf
+            createdAt: new Date().toISOString(),
           }
         })
       }