Skip to content

Commit

Permalink
Merge pull request #79 from aversini/fix(TextInput)-wrapper-class-con…
Browse files Browse the repository at this point in the history
…tains-undefined-in-some-cases

fix(TextInput): wrapper class contains "undefined" in some cases
  • Loading branch information
aversini authored Nov 25, 2023
2 parents 59f563c + 2e8c6f1 commit dbe69c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export const getTextInputClasses = ({
}: getTextInputClassesProps) => {
const wrapper = raw
? className
: `${TEXT_INPUT_WRAPPER_CLASSNAME} w-full ${className}`;
: clsx(`${TEXT_INPUT_WRAPPER_CLASSNAME} w-full`, className);

const input = raw
? inputClassName
Expand Down

0 comments on commit dbe69c4

Please sign in to comment.