We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15873af commit c242820Copy full SHA for c242820
src/components/projects/projectId/attributes/attributeId/AttributeCalculations.tsx
@@ -75,7 +75,7 @@ export default function AttributeCalculation() {
75
const [additionalConfigTmp, setAdditionalConfigTmp] = useState<LLMConfig>(null);
76
77
const currentAttributeRef = useRefFor(currentAttribute);
78
- const debouncedConfig = useDebounce(additionalConfigTmp, 500);
+ const debouncedConfig = useDebounce(additionalConfigTmp, 1000);
79
80
const updateSourceCode = useCallback((value: string, attributeNameParam?: string) => {
81
var regMatch: any = getPythonFunctionRegExMatch(value);
0 commit comments