You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mutateAsync: (data: any)=>void;// if you can figure out how to change this without raising type errors, be my guest
33
+
mutateAsync: (data: any)=>void;// if anyone can figure out how to change this without raising type errors, be my guest
34
34
isLoading: boolean;
35
35
defaultValues?: RefundModalInputs;
36
36
title: string;
37
37
}
38
38
39
39
exportinterfaceRefundModalInputs{
40
40
refundId?: string;
41
-
refundAmount: string;// this allows us to display default value with 2 decimal places
41
+
refundAmount: string;// this allows us to display default value with 2 decimal places - the type is enforced and casted via the input field and form schema
0 commit comments