Skip to content

Commit

Permalink
Fixed PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
devconn99 committed Apr 29, 2024
1 parent 085651a commit 16b8bdb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/form/Input/InlineInput/InlineInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,7 @@ export const InlineInput: FC<InlineInputProps> = forwardRef(

return (
<div className={twMerge(className, theme.inline.base)}>
<span
className={spanStyles}
style={{ paddingRight: extraWidth ? extraWidth + 'px' : 0 }}
>
<span className={spanStyles} style={{ paddingRight: extraWidth ?? 0 }}>
{inputValue}
</span>
{placeholderIsMinWidth && !inputValue && (
Expand Down

0 comments on commit 16b8bdb

Please sign in to comment.