diff --git a/frontend/lib/screens/auth/login_screen.dart b/frontend/lib/screens/auth/login_screen.dart index 9dc2408..6d6cfd2 100644 --- a/frontend/lib/screens/auth/login_screen.dart +++ b/frontend/lib/screens/auth/login_screen.dart @@ -1,5 +1,4 @@ import 'dart:async'; -import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; import 'package:url_launcher/url_launcher.dart'; @@ -361,17 +360,6 @@ class _LoginPageState extends State with WidgetsBindingObserver { context.go('/privacy'); }, ), - if (kDebugMode) - _FooterLink( - text: 'Test modale MDP', - onTap: () async { - await showDialog( - context: context, - barrierDismissible: false, - builder: (context) => const ChangePasswordDialog(), - ); - }, - ), ], ), ), @@ -568,18 +556,6 @@ class _LoginPageState extends State with WidgetsBindingObserver { fontSize: 11, onTap: () => context.go('/privacy'), ), - if (kDebugMode) - _FooterLink( - text: 'Test modale MDP', - fontSize: 11, - onTap: () async { - await showDialog( - context: context, - barrierDismissible: false, - builder: (context) => const ChangePasswordDialog(), - ); - }, - ), ], ), ),