Skip to content

Commit

Permalink
fix: 서치탭 소모임 -> 게더링으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
joarthvr committed Nov 29, 2024
1 parent b01787c commit e5a7806
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widgets/SearchTap/SearchTap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const renderingSearchTap = (activeTab: string, setActiveTab: (t: string) => void
);
} else if (activeTab === '아카이브') {
return <ArchiveGrid archives={dummyArchives} />;
} else if (activeTab === '소모임') {
} else if (activeTab === '게더링') {
return <GatheringGrid />;
}
};
Expand All @@ -49,7 +49,7 @@ export const SearchTap = ({
activeTab: string;
setActiveTab: (t: string) => void;
}) => {
const tabs = ['전체', '아카이브', '소모임'];
const tabs = ['전체', '아카이브', '게더링'];

return (
<div className={styles.wrapper}>
Expand Down

0 comments on commit e5a7806

Please sign in to comment.