fix: missing case
This commit is contained in:
parent
f39b5be064
commit
4521e61ae2
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ function h<T extends estree.Node>(
|
|||
props: Omit<T, 'type'>
|
||||
): T {
|
||||
const type = component.replace(/(?:^|-)([a-z])/g, (_, c) => c.toUpperCase());
|
||||
return Object.assign(props, { type }) as T;
|
||||
return Object.assign(props || {}, { type }) as T;
|
||||
}
|
||||
|
||||
declare global {
|
||||
|
|
Loading…
Reference in a new issue