Skip to content

Commit

Permalink
?
Browse files Browse the repository at this point in the history
  • Loading branch information
fiji-flo committed Apr 25, 2024
1 parent 84f11ee commit f03d482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kumascript/src/lib/css-syntax.ts
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ export async function getCSSSyntax(
let name;
if (node.type === "Type") {
name = node.name;
value = values[node.name].value;
value = values[node.name]?.value;
} else if (node.type === "Property") {
name = node.name;
value = getPropertySyntax(node.name);
Expand Down

0 comments on commit f03d482

Please sign in to comment.