Skip to content

Commit

Permalink
fix: storybook에서 타입 불일치 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
simeunseo committed Nov 27, 2024
1 parent 2a6c714 commit 655f7eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/stories/SearchInput.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ const SearchInputWithHooks = ({
action('onClear')();
};

const handleSearch = (searchValue: string) => {
action('onSearch')(searchValue);
const handleSearch = (value?: string) => {
action('onSearch')(value);
};

return (
Expand Down

0 comments on commit 655f7eb

Please sign in to comment.