Skip to content

Commit 29dee7d

Browse files
committed
Remove auto biometric behavior
1 parent a0db5cf commit 29dee7d

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- removed: Automatic biometric triggers on the `PinLoginScene`
6+
57
## 3.28.0 (2025-06-24)
68

79
- added: `ChangeUsernameScene` and `ChangeUsernameScreen` components

src/components/scenes/PinLoginScene.tsx

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,6 @@ export function PinLoginScene(props: Props) {
105105
// Effects
106106
// ---------------------------------------------------------------------
107107

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-
116108
React.useEffect(() => {
117109
if (
118110
userInfo == null ||
@@ -271,7 +263,6 @@ export function PinLoginScene(props: Props) {
271263
data: { name: 'pinLogin', params: { loginId: userInfo.loginId } }
272264
})
273265
setErrorInfo(undefined)
274-
handleTouchLogin(userInfo).catch(showError)
275266
}
276267

277268
const handleShowDrop = () => {

0 commit comments

Comments
 (0)