2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-05-29 20:39:20 +00:00

Prevent query returning undefined value (#9847)

This commit is contained in:
Oliver
2025-06-25 06:53:39 +10:00
committed by GitHub
parent 0b451dc085
commit f1482aaa28
+1 -1
View File
@@ -93,7 +93,7 @@ export function useGenerator(props: GeneratorProps): GeneratorState {
if (!isEnabled()) { if (!isEnabled()) {
setResult(null); setResult(null);
return; return null;
} }
return api return api