Fix type warning

This commit is contained in:
rijkvanzanten
2021-02-18 13:43:45 -05:00
parent 7f652ced4f
commit 175b50a29c

View File

@@ -142,7 +142,7 @@ export function useGroupableParent(
watch(
() => options?.mandatory?.value,
(newValue: boolean, oldValue: boolean) => {
(newValue, oldValue) => {
if (isEqual(newValue, oldValue)) return;
// If you're required to select a value, make sure a value is selected on first render