fix(scan): Fixed a bug preventing TUI from working.

This commit is contained in:
2026-06-19 14:21:52 -04:00
parent 33cd7c4eda
commit 0083e4e0db
3 changed files with 5 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ multi_select :: proc(
return
}
selected = make([dynamic]bool, 0, len(options))
selected = make([dynamic]bool, len(options))
cursor: int = 0
scroll_offset: int = 0