From 929c4771c2caa4b64d4232be0e37bf4221d2f27f Mon Sep 17 00:00:00 2001 From: Levin Dixon Date: Wed, 8 Apr 2020 21:18:13 -0700 Subject: [PATCH] feat(runRoutes): store user after email confirmation --- src/runRoutes.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runRoutes.tsx b/src/runRoutes.tsx index e45fe32..61dbd22 100644 --- a/src/runRoutes.tsx +++ b/src/runRoutes.tsx @@ -58,7 +58,7 @@ export function runRoutes( if (params.confirmation_token) { gotrue - .confirm(params.confirmation_token) + .confirm(params.confirmation_token, remember) .then(setUser) .catch(console.error);