Skip to content

Commit

Permalink
Fix invalid classnames
Browse files Browse the repository at this point in the history
  • Loading branch information
benscobie committed Aug 6, 2024
1 parent 79209c2 commit 2af12d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/ui/atoms/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Input = forwardRef<HTMLInputElement, InputProps>(function InputGroup(
<>
<div className="mb-1 block">
<label htmlFor={id}>
{label} {required && <span className="text-red">*</span>}
{label} {required && <span className="text-red-600">*</span>}
</label>
{tooltip && <Tooltip text={tooltip} />}
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/ui/atoms/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Select = forwardRef<HTMLSelectElement, SelectProps>(function Select(
return (
<>
<label htmlFor={id} className="mb-1 block">
{label} {required && <span className="text-red">*</span>}
{label} {required && <span className="text-red-600">*</span>}
</label>
<select
id="loanType"
Expand Down

0 comments on commit 2af12d5

Please sign in to comment.