feat: remove duplicate lines

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-02 02:58:50 +00:00
parent 1143672123
commit 71e052ab4d
11 changed files with 731 additions and 98 deletions

View File

@@ -78,8 +78,8 @@ import { Box } from '@mui/material';
import React from 'react';
import * as Yup from 'yup';
const initialValues = {};
type InitialValuesType = typeof initialValues;
type InitialValuesType = {};
const initialValues: InitialValuesType = {};
const validationSchema = Yup.object({
// splitSeparator: Yup.string().required('The separator is required')
});