From 66dc04d98e167d3873f4127f663b0cddb84abf00 Mon Sep 17 00:00:00 2001 From: Kurt Hutten Date: Fri, 1 Oct 2021 21:22:02 +1000 Subject: [PATCH] Add sign up toast message --- app/web/src/components/LoginModal/LoginModal.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/web/src/components/LoginModal/LoginModal.tsx b/app/web/src/components/LoginModal/LoginModal.tsx index e80737c..bd0b750 100644 --- a/app/web/src/components/LoginModal/LoginModal.tsx +++ b/app/web/src/components/LoginModal/LoginModal.tsx @@ -47,6 +47,13 @@ const LoginModal = ({ open, onClose, shouldStartWithSignup = false }) => { password, remember: { full_name: name, userName }, }) + toast( + 'Look out for a verification email to finish making your account.', + { + icon: '📬', + duration: 8000, + } + ) onClose() } catch (errorEvent) { setError(errorEvent?.json?.error_description)