From 18ad4d376ef43abc08107c84d0652c4ca376861e Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Mon, 8 Sep 2025 22:48:46 +0800 Subject: [PATCH] :lipstick: The payment now no longer auto procced --- lib/widgets/payment/payment_overlay.dart | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/widgets/payment/payment_overlay.dart b/lib/widgets/payment/payment_overlay.dart index 1acf2c12..1589a774 100644 --- a/lib/widgets/payment/payment_overlay.dart +++ b/lib/widgets/payment/payment_overlay.dart @@ -142,10 +142,6 @@ class _PaymentContentState extends ConsumerState<_PaymentContent> { // Set initial mode based on stored PIN and biometric support if (_hasStoredPin && _hasBiometricSupport && widget.enableBiometric) { _isPinMode = false; - // Automatically trigger biometric authentication - WidgetsBinding.instance.addPostFrameCallback((_) { - _authenticateWithBiometric(); - }); } else { _isPinMode = true; }