Skip to content

Commit 13bfec9

Browse files
committed
style: reformat code
1 parent 3acfaaa commit 13bfec9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/update-modal/form-body.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function UpdateFormBody<T extends FieldValues>({
2828
callback: (data) => {
2929
onFormStateChange?.(data.isDirty ?? false);
3030
},
31-
})
31+
});
3232

3333
return () => unsubscribe();
3434
}, [form, onFormStateChange]);

hooks/use-dialog-close-confirmation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function useDialogCloseConfirmation({
2828
return () => {
2929
window.removeEventListener("beforeunload", handleBeforeUnload);
3030
};
31-
}, [isDirty])
31+
}, [isDirty]);
3232

3333
const handleDialogOpenChange = useCallback(
3434
(newOpen: boolean) => {

0 commit comments

Comments
 (0)