aboutsummaryrefslogtreecommitdiff
path: root/apps/web
diff options
context:
space:
mode:
authorSaatvik Arya <[email protected]>2024-07-25 20:20:04 -0700
committerSaatvik Arya <[email protected]>2024-07-25 20:20:04 -0700
commit993d929d07395a38648ee8338b8fc85fbf1e58de (patch)
treec7f3c1386f81891095a949f2cee31006bc7da576 /apps/web
parentformat (diff)
downloadsupermemory-993d929d07395a38648ee8338b8fc85fbf1e58de.tar.xz
supermemory-993d929d07395a38648ee8338b8fc85fbf1e58de.zip
catch
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/app/(auth)/onboarding/page.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/web/app/(auth)/onboarding/page.tsx b/apps/web/app/(auth)/onboarding/page.tsx
index 722cbb60..94c54be9 100644
--- a/apps/web/app/(auth)/onboarding/page.tsx
+++ b/apps/web/app/(auth)/onboarding/page.tsx
@@ -28,7 +28,9 @@ export default function Home() {
if (currStep > 3) {
updateDb().then(() => {
push("/home?q=what%20is%20supermemory");
- });
+ }).catch((e) => {
+ console.error(e);
+ });
}
}, [currStep]);