fallback if shadows aren't defined

This commit is contained in:
Henry Jameson 2021-01-28 14:05:32 +02:00
parent 11963de288
commit 2576b75059
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ export const generateShadows = (input, colors) => {
}
const cleanInputShadows = Object.fromEntries(
Object.entries(input.shadows)
Object.entries(input.shadows || {})
.map(([name, shadowSlot]) => [
name,
// defaulting color to black to avoid potential problems