This commit is contained in:
2025-11-15 04:11:22 +01:00
parent bd3eab8b40
commit d0379c57ce
47 changed files with 558 additions and 703 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ interface NormalizedOption {
index: number;
}
const normalizeOption = (option: QuickAddOption | null | undefined, index: number): NormalizedOption | null => {
const normalizeOption = (option: QuickAddOption | null, index: number): NormalizedOption | null => {
if (option == null) {
return null;
}