fix white labelling empty string (#3603)

This commit is contained in:
pablonyx 2025-01-06 11:26:55 -08:00 committed by GitHub
parent 4fb129e77b
commit 2b8d3a6ef5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,9 @@ export function WhitelabelingForm() {
}}
validationSchema={Yup.object().shape({
auto_scroll: Yup.boolean().nullable(),
application_name: Yup.string().nullable(),
application_name: Yup.string()
.nullable()
.length(0, "Application name is required"),
use_custom_logo: Yup.boolean().required(),
use_custom_logotype: Yup.boolean().required(),
custom_header_content: Yup.string().nullable(),