Clean up build errors

This commit is contained in:
2025-10-04 16:32:54 -04:00
parent e84c7e568f
commit 9761c29934
3 changed files with 2 additions and 2 deletions

0
inventory-server/chat/import-chat-data.sh Executable file → Normal file
View File

View File

@@ -277,7 +277,7 @@ export const useAiValidation = <T extends string>(
fields: Fields<T>,
rowHook?: (row: RowData<T>) => Promise<RowData<T>>,
tableHook?: (data: RowData<T>[]) => Promise<RowData<T>[]>,
revalidateRows?: (rowIndices?: number[]) => Promise<void>
revalidateRows?: (rowIndexes: number[], updatedFields?: { [rowIndex: number]: string[] }, dataOverride?: RowData<T>[]) => Promise<void>
) => {
// State for AI validation
const [isAiValidating, setIsAiValidating] = useState(false);

File diff suppressed because one or more lines are too long