forked from AkkomaGang/akkoma-fe
fallback if shadows aren't defined
This commit is contained in:
parent
11963de288
commit
2576b75059
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue