Skip to content

Commit

Permalink
fix: ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Ustiantsev committed Feb 10, 2025
1 parent a2853d2 commit 8963c53
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/components/ATextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export interface ATextInputProps {
inputMode?: InputModeOptions,
cursorColor?: string,
maxHeight?: number
onStartShouldSetResponder?: ((event: GestureResponderEvent) => boolean) | undefined
onStartShouldSetResponder?: (event: GestureResponderEvent) => boolean
}

export const ATextInput = memo(forwardRef((props: ATextInputProps, ref: ForwardedRef<ATextInputRef>) => {
Expand Down Expand Up @@ -173,7 +173,6 @@ export const ATextInput = memo(forwardRef((props: ATextInputProps, ref: Forwarde
const labelHeight = useSharedValue(0);
const labelWidth = useSharedValue(1);


const withLabel = !!props.label;
const valueNotEmpty = (props.value?.length || 0) > 0;

Expand Down

0 comments on commit 8963c53

Please sign in to comment.