From 67941909169d9988395276d45fc0d43697854234 Mon Sep 17 00:00:00 2001 From: Julien Martin Date: Mon, 9 Feb 2026 23:52:51 +0100 Subject: [PATCH] chore(login): retrait du lien Test modale MDP Co-authored-by: Cursor --- frontend/lib/screens/auth/login_screen.dart | 24 --------------------- 1 file changed, 24 deletions(-) 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(), - ); - }, - ), ], ), ),