feat: Add default customer message and terms and conditions to the transactions.

This commit is contained in:
Ahmed Bouhuolia
2023-12-14 11:01:25 +02:00
parent e5bcb1c19a
commit 33e5d1a979
18 changed files with 658 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
// @ts-nocheck
import * as Yup from 'yup';
const Schema = Yup.object().shape({
termsConditions: Yup.string().optional(),
customerNotes: Yup.string().optional(),
});
export const PreferencesEstimatesFormSchema = Schema;