Skip to content

Commit

Permalink
fix: static code analysis error
Browse files Browse the repository at this point in the history
affects: @medly-components/core
  • Loading branch information
gmukul01 committed Jan 2, 2024
1 parent 82bcb57 commit 6459c04
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/core/src/components/TextField/TextField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Component: FC<TextFieldProps> = memo(
const {
id,
value,
size,
size = 'M',
label,
minWidth,
maxWidth,
Expand Down Expand Up @@ -133,7 +133,7 @@ const Component: FC<TextFieldProps> = memo(
>
{!!Prefix && showDecorators && (
<Styled.IconWrapper
size={size!}
size={size}
disabled={disabled}
variant={props.variant!}
isActive={isActive}
Expand Down Expand Up @@ -189,7 +189,7 @@ const Component: FC<TextFieldProps> = memo(
</Styled.InputWrapper>
{props.showTooltipForHelperAndErrorText && (
<Styled.HelperAndErrorTextTooltipWrapper
size={size!}
size={size}
displayCharacterCount={displayCharacterCount}
isSuffixPresent={isSuffixPresent}
>
Expand All @@ -198,7 +198,7 @@ const Component: FC<TextFieldProps> = memo(
)}
{!!Suffix && showDecorators && (
<Styled.IconWrapper
size={size!}
size={size}
disabled={disabled}
variant={props.variant!}
isActive={isActive}
Expand Down

0 comments on commit 6459c04

Please sign in to comment.