Skip to content

Commit

Permalink
fix: actually call function
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldElysium committed Aug 8, 2024
1 parent 4d1e4ed commit 1b1a02e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ui/form/hooks/runner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ import '../ui/blocks';

/* eslint-disable max-len */
const useFormRunner = (props: IRunnerUIProps) => {
const [clientId] = useState(crypto.randomUUID);
const [clientId] = useState(crypto.randomUUID());

const [runner, cache, l10n, , doAction] = useRunnerController({
...props,
Expand Down

0 comments on commit 1b1a02e

Please sign in to comment.