From 32148a3207672f2860da59108c20a7d0c3464aa9 Mon Sep 17 00:00:00 2001 From: "a.bouhuolia" Date: Thu, 6 Apr 2023 04:32:26 +0200 Subject: [PATCH] fix(webapp): change intent type of reset password success toast --- packages/webapp/src/containers/Authentication/ResetPassword.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webapp/src/containers/Authentication/ResetPassword.tsx b/packages/webapp/src/containers/Authentication/ResetPassword.tsx index 63796bcff..8b3613c81 100644 --- a/packages/webapp/src/containers/Authentication/ResetPassword.tsx +++ b/packages/webapp/src/containers/Authentication/ResetPassword.tsx @@ -37,7 +37,7 @@ export default function ResetPassword() { .then((response) => { AppToaster.show({ message: intl.get('password_successfully_updated'), - intent: Intent.DANGER, + intent: Intent.SUCCESS, position: Position.BOTTOM, }); history.push('/auth/login');