Skip to content

Commit

Permalink
chore: 불필요한 콘솔 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
dladncks1217 committed Feb 15, 2024
1 parent 61335e3 commit 566f18e
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ import { PATH } from '@constants/path';
import { sortByNewest, sortByStartDate } from '@utils/sort';
import { queryClient } from '@/hooks/api/queryClient';

interface TripsItemListProps {
trips: TripsData[];
}

const TripsItemList = () => {
const tripsData = queryClient.getQueryData(['trips']) as TripsData[];

Expand All @@ -36,7 +32,6 @@ const TripsItemList = () => {
: tripsData?.slice().sort(sortByNewest);

queryClient.setQueryData(['trips'], sortedTrips);
console.log(sortedTrips);
};

return (
Expand Down

0 comments on commit 566f18e

Please sign in to comment.