Skip to content

Commit

Permalink
bonus: fix typo on the Select Tailwind intro demo
Browse files Browse the repository at this point in the history
  • Loading branch information
danilo-leal committed Feb 7, 2024
1 parent cb19d5b commit 0d242ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const Select = React.forwardRef(function CustomSelect(props, ref) {
return {
...resolvedSlotProps,
className: clsx(
`${isDarkMode ? 'dark' : ''} z-10x`,
`${isDarkMode ? 'dark' : ''} z-10`,
resolvedSlotProps?.className,
),
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const Select = React.forwardRef(function CustomSelect<
return {
...resolvedSlotProps,
className: clsx(
`${isDarkMode ? 'dark' : ''} z-10x`,
`${isDarkMode ? 'dark' : ''} z-10`,
resolvedSlotProps?.className,
),
};
Expand Down

0 comments on commit 0d242ae

Please sign in to comment.