Skip to content

Commit 0bf6d75

Browse files
authored
fix: typo in function call (#1066)
1 parent a06f7e6 commit 0bf6d75

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/app-builder/src/components/Cases/AddComment.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { Icon } from 'ui-icons';
1616
export function AddComment({ caseId }: { caseId: string }) {
1717
const { t } = useTranslation(casesI18n);
1818
const addCommentMutation = useAddCommentMutation();
19-
const revalidate = useLoaderRevalidator;
19+
const revalidate = useLoaderRevalidator();
2020

2121
const form = useForm({
2222
defaultValues: { caseId, comment: '', files: [] } as AddCommentPayload,

0 commit comments

Comments
 (0)