Skip to content

Commit

Permalink
fixed linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
eibrahim committed Feb 18, 2025
1 parent 16a85ac commit 326f7d4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/settings/SystemSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ export function SystemSettings() {
>
<select
value={system.logLevel || "none"}
onChange={(e) => handleUpdate({ logLevel: e.target.value })}
onChange={(e) =>
handleUpdate({ logLevel: e.target.value as "none" | "debug" })
}
className="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm"
>
<option value="none">None</option>
Expand Down

0 comments on commit 326f7d4

Please sign in to comment.