Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Nov 22, 2024
1 parent 4913fdc commit 606ac25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/TextInput/BaseTextInput/index.e2e.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ function BaseTextInputE2E(props: BaseTextInputProps, ref: ForwardedRef<BaseTextI
return (
<BaseTextInput
ref={ref}
// eslint-disable-next-line react/jsx-props-no-spreading
{...props}
/>
);
Expand Down
3 changes: 3 additions & 0 deletions src/components/TextInputWithCurrencySymbol/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ type BaseTextInputWithCurrencySymbolProps = {

/** Hide the focus styles on TextInput */
hideFocusedState?: boolean;

/** The test ID of TextInput. Used to locate the view in end-to-end tests. */
testID?: string;
} & Pick<BaseTextInputProps, 'autoFocus' | 'autoGrow' | 'contentWidth' | 'onPress'>;

type TextInputWithCurrencySymbolProps = Omit<BaseTextInputWithCurrencySymbolProps, 'onSelectionChange'> & {
Expand Down

0 comments on commit 606ac25

Please sign in to comment.