fix(lib): add undefined check on vcn VariantProps processing

This commit is contained in:
p-sw 2024-07-12 13:55:41 +09:00
parent 8465837f63
commit db5c36a3bf

View File

@ -270,6 +270,7 @@ export function vcn<
for (const [variantName, variantKey] of Object.entries(
otherVariantProps,
) as VariantKVEntry<V>) {
if (typeof variantKey === "undefined") continue;
kv[variantName] = variantKey;
}