diff options
| author | Adam <[email protected]> | 2026-01-20 15:08:03 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2026-01-20 15:08:03 -0600 |
| commit | 96a9744347c5bfe2741d096e854663529c92a327 (patch) | |
| tree | 55753d279241db863e90b133de1019e8f71c846f | |
| parent | c4594c4c1ff82fbac4f5da1ca34bc4786fab4430 (diff) | |
| download | opencode-96a9744347c5bfe2741d096e854663529c92a327.tar.gz opencode-96a9744347c5bfe2741d096e854663529c92a327.zip | |
fix: type error
| -rw-r--r-- | packages/app/src/components/settings-general.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/app/src/components/settings-general.tsx b/packages/app/src/components/settings-general.tsx index 4e0fa765f..6221b253f 100644 --- a/packages/app/src/components/settings-general.tsx +++ b/packages/app/src/components/settings-general.tsx @@ -113,6 +113,7 @@ export const SettingsGeneral: Component = () => { size="small" triggerStyle={{ "font-family": monoFontFamily(settings.appearance.font()), "min-width": "180px" }} > + {/* @ts-expect-error */} {(option) => <span style={{ "font-family": monoFontFamily(option?.value) }}>{option?.label}</span>} </Select> </SettingsRow> |
