create profile record before upload (#9547)

This commit is contained in:
Samuel Newman
2025-12-12 22:32:13 +02:00
committed by GitHub
parent 8cee40beff
commit 9971e91f9c
2 changed files with 68 additions and 8 deletions
@@ -161,11 +161,10 @@ export function StepFinished() {
}
next.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
next.createdAt = new Date().toISOString()
if (!next.createdAt) {
next.createdAt = new Date().toISOString()
}
return next
})