mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-04-04 09:58:32 +02:00
fix white labelling empty string (#3603)
This commit is contained in:
parent
4fb129e77b
commit
2b8d3a6ef5
@ -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(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user