(theme: Theme)
| 29 | ]; |
| 30 | |
| 31 | const handleThemeChange = (theme: Theme) => { |
| 32 | settingStore.setTheme(theme); |
| 33 | }; |
| 34 | |
| 35 | return <Select className="w-auto min-w-[120px]" value={theme} itemList={themeItemList} onValueChange={handleThemeChange} />; |
| 36 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected