fix(ai): allow configFiles to be null in template generator Details type (#4736)

This commit is contained in:
Mauricio Siu 2026-07-05 16:51:47 -06:00 committed by GitHub
parent cb23d726fe
commit 38de9ef218
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@ interface Details {
envVariables: EnvVariable[];
shortDescription: string;
domains: Domain[];
configFiles?: Mount[];
configFiles?: Mount[] | null;
}
interface Mount {