Skip to content

Commit b411e08

Browse files
committed
fix: experimental commit due to GitHub Action errors
1 parent 8a9d382 commit b411e08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webview-ui/src/components/settings/MaxContextWindowControl.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const MaxContextWindowControl = ({ value, onChange, maxValue = 1000000 }:
3535
setIsCustomMaxContextWindow(isChecked)
3636

3737
if (!isChecked) {
38-
setInputValue(null) // Unset the max context window, note that undefined is unserializable.
38+
setInputValue(null) // Unset the max context window limit, note that undefined is unserializable.
3939
} else {
4040
setInputValue(value ?? 0) // Use the value from apiConfiguration, if set.
4141
}

0 commit comments

Comments
 (0)