From 364961c9de5193a658585e71d3372584f6f56525 Mon Sep 17 00:00:00 2001 From: Narayanan Madaswamy Date: Sat, 29 Aug 2026 17:24:08 +0530 Subject: [PATCH] Update auth_screen.dart --- kifi-app/lib/features/auth/presentation/auth_screen.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kifi-app/lib/features/auth/presentation/auth_screen.dart b/kifi-app/lib/features/auth/presentation/auth_screen.dart index fcef6b7..f7364bd 100644 --- a/kifi-app/lib/features/auth/presentation/auth_screen.dart +++ b/kifi-app/lib/features/auth/presentation/auth_screen.dart @@ -19,8 +19,8 @@ class AuthScreen extends ConsumerStatefulWidget { class _AuthScreenState extends ConsumerState with SingleTickerProviderStateMixin { bool isLogin = true; - final emailController = TextEditingController(text: 'nmadaswamy@gmail.com'); - final passwordController = TextEditingController(text: 'Algorithm@123'); + final emailController = TextEditingController(text: ''); + final passwordController = TextEditingController(text: ''); void toggleMode(bool login) { if (isLogin == login) return;