0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00

fix: feature validation test

This commit is contained in:
Florian Lefebvre 2024-08-13 14:10:34 +02:00
parent d878774766
commit b3bc57bebf

View file

@ -94,7 +94,7 @@ export function validateSupportedFeatures(
adapterName,
logger,
'astro:env getSecret',
() => Object.keys(config?.env.schema ?? {}).length !== 0,
() => Object.keys(config?.env?.schema ?? {}).length !== 0,
);
return validationResult;