Skip to content

Commit

Permalink
Merge pull request #300 from boostcampwm-2024/feat/#274/video-pagenation
Browse files Browse the repository at this point in the history
[Fix] release 변경사항 병합
  • Loading branch information
seoko97 authored Nov 27, 2024
2 parents 83643f4 + 7052826 commit 72234ba
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 72234ba

Please sign in to comment.