Skip to content

Commit 9e976a5

Browse files
committed
[chore]포매팅
1 parent 94a65e0 commit 9e976a5

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/domains/recipe/components/main/Cocktails.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { debounce } from '@/shared/utills/debounce';
1111
import { useSearchParams } from 'next/navigation';
1212
import { Sort } from '../../types/types';
1313

14-
1514
function Cocktails() {
1615
const searchParams = useSearchParams();
1716
const sortByParam = searchParams.get('sortBy') || 'recent';
@@ -38,7 +37,6 @@ function Cocktails() {
3837
threshold: 0.1,
3938
});
4039

41-
4240
useEffect(() => {
4341
if (!isSearchMode && inView && hasNextPage) {
4442
fetchNextPage?.();
@@ -68,7 +66,6 @@ function Cocktails() {
6866

6967
<CocktailFilter cocktailsEA={data.length} />
7068

71-
7269
<section className="mt-5">
7370
{noResults ? <div>검색 결과가 없습니다.</div> : <CocktailList cocktails={data} />}
7471
</section>

0 commit comments

Comments
 (0)