File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ - removed: Automatic biometric triggers on the ` PinLoginScene `
6
+
5
7
## 3.28.0 (2025-06-24)
6
8
7
9
- added: ` ChangeUsernameScene ` and ` ChangeUsernameScreen ` components
Original file line number Diff line number Diff line change @@ -105,14 +105,6 @@ export function PinLoginScene(props: Props) {
105
105
// Effects
106
106
// ---------------------------------------------------------------------
107
107
108
- // Runs once at start:
109
- React . useEffect ( ( ) => {
110
- if ( userInfo != null && biometryType !== 'FaceID' ) {
111
- handleTouchLogin ( userInfo ) . catch ( showError )
112
- }
113
- // eslint-disable-next-line react-hooks/exhaustive-deps
114
- } , [ ] )
115
-
116
108
React . useEffect ( ( ) => {
117
109
if (
118
110
userInfo == null ||
@@ -271,7 +263,6 @@ export function PinLoginScene(props: Props) {
271
263
data : { name : 'pinLogin' , params : { loginId : userInfo . loginId } }
272
264
} )
273
265
setErrorInfo ( undefined )
274
- handleTouchLogin ( userInfo ) . catch ( showError )
275
266
}
276
267
277
268
const handleShowDrop = ( ) => {
You can’t perform that action at this time.
0 commit comments