업데이트

This commit is contained in:
focp212@naver.com
2025-10-01 09:27:08 +09:00
parent 857a58c14d
commit 68f8560d05
5 changed files with 62 additions and 11 deletions

View File

@@ -76,7 +76,10 @@ export const HeaderNavigation = ({
<select className="heading-select">
{ selectOptions && selectOptions.length > 0 &&
selectOptions.map((value, index) => (
<option value={ value.value }>{ value.name }</option>
<option
key={ value.value }
value={ value.value }
>{ value.name }</option>
))
}
</select>