diff options
| author | Mohamed Bassem <me@mbassem.com> | 2026-01-17 19:00:51 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2026-01-18 14:37:24 +0000 |
| commit | 6094d360cc64806c7e2544c51b6a1f5b1ef140f6 (patch) | |
| tree | 09595cb0d32fb9dc2509da43a1385f7289d7984a /apps/mobile/components/ui/SearchInput/SearchInput.ios.tsx | |
| parent | c56cf4e24f6134547fb9c5b58eb20840f5083e9e (diff) | |
| download | karakeep-6094d360cc64806c7e2544c51b6a1f5b1ef140f6.tar.zst | |
deps(mobile): upgrade to sdk 54
Diffstat (limited to 'apps/mobile/components/ui/SearchInput/SearchInput.ios.tsx')
| -rw-r--r-- | apps/mobile/components/ui/SearchInput/SearchInput.ios.tsx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/mobile/components/ui/SearchInput/SearchInput.ios.tsx b/apps/mobile/components/ui/SearchInput/SearchInput.ios.tsx index 0b1dd76c..1a767675 100644 --- a/apps/mobile/components/ui/SearchInput/SearchInput.ios.tsx +++ b/apps/mobile/components/ui/SearchInput/SearchInput.ios.tsx @@ -1,7 +1,3 @@ -import type { - NativeSyntheticEvent, - TextInputFocusEventData, -} from "react-native"; import * as React from "react"; import { Pressable, TextInput, View, ViewStyle } from "react-native"; import Animated, { @@ -119,7 +115,7 @@ const SearchInput = React.forwardRef< onChangeText(""); } - function onFocus(e: NativeSyntheticEvent<TextInputFocusEventData>) { + function onFocus(e: Parameters<NonNullable<typeof onFocusProp>>[0]) { setShowCancel(true); onFocusProp?.(e); } |
