Update selected item color in Pass menu
[ProtonMail-WebClient.git] / packages / pass / lib / validation / vault.ts
blobd52d2a2208fdcb5e33587e80c6b85896c3a8fe8e
1 import { type FormikErrors } from 'formik';
2 import { c } from 'ttag';
4 import type { VaultFormValues } from '@proton/pass/types';
5 import { isEmptyString } from '@proton/pass/utils/string/is-empty-string';
7 export const validateVaultValues = ({ name }: VaultFormValues) => {
8     let errors: FormikErrors<VaultFormValues> = {};
9     if (isEmptyString(name)) {
10         errors.name = c('Warning').t`Vault name is required`;
11     }
13     return errors;