Skip to content

Commit

Permalink
fix: select props 전달 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
ShipFriend0516 committed Nov 25, 2024
1 parent 86bbdbf commit da80e7a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/pages/SessionListPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ const SessionListPage = () => {
<h1 className={"text-bold-l mb-6"}>스터디 세션 목록</h1>
<div className={"h-11 flex gap-2 w-full"}>
<SearchBar text="세션을 검색하세요" />
<Select setValue={setSelectedCategory} options={options} />
<Select
value={"FE"}
setValue={setSelectedCategory}
options={options}
/>
<CreateButton
onClick={() => navigate("/sessions/create")}
text={"새로운 세션"}
Expand Down

0 comments on commit da80e7a

Please sign in to comment.