feat: enhance signup flow to skip profile step for logged-in users

This commit is contained in:
QLHazyCoder
2026-04-25 17:35:22 +08:00
parent 809d146b74
commit 171b375a0b
6 changed files with 286 additions and 7 deletions
+1 -1
View File
@@ -103,7 +103,7 @@
throw new Error(prepareResult.error);
}
if (prepareResult?.alreadyVerified) {
await completeStepFromBackground(4, {});
await completeStepFromBackground(4, prepareResult?.skipProfileStep ? { skipProfileStep: true } : {});
return;
}