Skip to content

Commit

Permalink
fix(TextInput): removed trigger action on container focus NO-JIRA (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-potepa authored Feb 7, 2024
1 parent ded122f commit 9f6ccc1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/TextInput/TextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const TextInput = forwardRef<
const {
containerRef,
handleContainerClick,
handleContainerFocus,

styles,
containerProps,
innerValue,
Expand All @@ -51,8 +51,6 @@ export const TextInput = forwardRef<
pr={!!afterComponent && '0'}
data-testid="text-input"
data-state={state}
tabIndex={0}
onFocus={handleContainerFocus}
{...containerProps}
>
{!!beforeComponent && (
Expand Down

0 comments on commit 9f6ccc1

Please sign in to comment.