aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(auth)
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2024-08-05 18:36:26 -0700
committerDhravya Shah <[email protected]>2024-08-05 18:36:26 -0700
commit4a9565f91d67cbc57be5bb4370c3e640daf643fb (patch)
tree67c38bc9e55a75802207a350ba62d17e23e72437 /apps/web/app/(auth)
parentMerge branch 'kush/be-queue' of https://github.com/Dhravya/supermemory into k... (diff)
downloadsupermemory-4a9565f91d67cbc57be5bb4370c3e640daf643fb.tar.xz
supermemory-4a9565f91d67cbc57be5bb4370c3e640daf643fb.zip
changes for staging
Diffstat (limited to 'apps/web/app/(auth)')
-rw-r--r--apps/web/app/(auth)/onboarding/page.tsx14
1 files changed, 8 insertions, 6 deletions
diff --git a/apps/web/app/(auth)/onboarding/page.tsx b/apps/web/app/(auth)/onboarding/page.tsx
index 5b728928..c311ea13 100644
--- a/apps/web/app/(auth)/onboarding/page.tsx
+++ b/apps/web/app/(auth)/onboarding/page.tsx
@@ -26,11 +26,13 @@ export default function Home() {
await completeOnboarding();
};
if (currStep > 3) {
- updateDb().then(() => {
- push("/home?q=what%20is%20supermemory");
- }).catch((e) => {
- console.error(e);
- });
+ updateDb()
+ .then(() => {
+ push("/home?q=what%20is%20supermemory");
+ })
+ .catch((e) => {
+ console.error(e);
+ });
}
}, [currStep]);
@@ -292,7 +294,7 @@ function StepThree({ currStep }: { currStep: number }) {
});
if (cont.success) {
- toast.success("Memory created", {
+ toast.success("Memory queued", {
richColors: true,
});
} else {