From 11589e74fe873d17a01cc6486b5d852f9f680084 Mon Sep 17 00:00:00 2001 From: Zeel Bhanderi <84558520+zeelbhanderi@users.noreply.github.com> Date: Mon, 2 Jun 2025 08:59:49 +0000 Subject: [PATCH] Cleanup: Removed duplicate password field in signup form --- .../lib/modules/auth/sign_up/screens/sign_up_screen.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/app_core/lib/modules/auth/sign_up/screens/sign_up_screen.dart b/apps/app_core/lib/modules/auth/sign_up/screens/sign_up_screen.dart index 404dd8b..721e935 100644 --- a/apps/app_core/lib/modules/auth/sign_up/screens/sign_up_screen.dart +++ b/apps/app_core/lib/modules/auth/sign_up/screens/sign_up_screen.dart @@ -66,7 +66,6 @@ class SignUpPage extends StatelessWidget implements AutoRouteWrapper { SlideAndFadeAnimationWrapper(delay: 300, child: _NameInput()), SlideAndFadeAnimationWrapper(delay: 300, child: _EmailInput()), SlideAndFadeAnimationWrapper(delay: 400, child: _PasswordInput()), - SlideAndFadeAnimationWrapper(delay: 400, child: _PasswordInput()), SlideAndFadeAnimationWrapper(delay: 400, child: _ConfirmPasswordInput()), SlideAndFadeAnimationWrapper(delay: 400, child: _UserConsentWidget()), const SlideAndFadeAnimationWrapper(delay: 600, child: _CreateAccountButton()),