Skip to content

Commit

Permalink
npm publish (0.0.254)
Browse files Browse the repository at this point in the history
  • Loading branch information
baegofda committed Oct 14, 2024
1 parent fe8057b commit 2b85df6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbodek-ui",
"version": "0.0.253",
"version": "0.0.254",
"type": "module",
"author": "Bbodek",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/core/components/Input/InputSearch/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const InputSearch = <T extends React.ElementType = 'form'>({
});
const SearchIcon = <MagnifyingGlass size='100%' className='text-gray-05' />;
const el = rootRef.current;
const isForm = rootElement === 'form';
const isForm = (rootElement || 'form') === 'form';

const endComponent = () => {
if (isForm) {
Expand Down

0 comments on commit 2b85df6

Please sign in to comment.