fixing the input box issue

This commit is contained in:
Cody Seibert
2025-12-14 12:41:19 -05:00
parent ebc4f1422a
commit ae13551033

View File

@@ -1496,7 +1496,7 @@ export function BoardView() {
? features.filter(
(f) =>
f.description.toLowerCase().includes(normalizedQuery) ||
f.category.toLowerCase().includes(normalizedQuery)
f.category?.toLowerCase().includes(normalizedQuery)
)
: features;