Skip to content

Commit

Permalink
refactor(MyTemplatePage): 내 템플릿 검색 디바운스 시간 변경 (250ms > 300ms)
Browse files Browse the repository at this point in the history
  • Loading branch information
vi-wolhwa committed Aug 7, 2024
1 parent a7db672 commit a48e5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/MyTemplatesPage/MyTemplatePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const MyTemplatePage = () => {
const [page, setPage] = useState<number>(1);
const [keyword, handleKeywordChange] = useInput('');

const debouncedKeyword = useDebounce(keyword, 250);
const debouncedKeyword = useDebounce(keyword, 300);

const { data: templateData } = useTemplateListQuery({
categoryId: selectedCategoryId,
Expand Down

0 comments on commit a48e5c8

Please sign in to comment.