Skip to content

Commit ba85b80

Browse files
Merge pull request #225 from ShipFriend0516/fix/select-component-props
[Fix] Select 컴포넌트 Props 오류 해결
2 parents 6006b87 + da80e7a commit ba85b80

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

frontend/src/pages/SessionListPage.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,11 @@ const SessionListPage = () => {
6363
<h1 className={"text-bold-l mb-6"}>스터디 세션 목록</h1>
6464
<div className={"h-11 flex gap-2 w-full"}>
6565
<SearchBar text="세션을 검색하세요" />
66-
<Select setValue={setSelectedCategory} options={options} />
66+
<Select
67+
value={"FE"}
68+
setValue={setSelectedCategory}
69+
options={options}
70+
/>
6771
<CreateButton
6872
onClick={() => navigate("/sessions/create")}
6973
text={"새로운 세션"}

0 commit comments

Comments
 (0)