Skip to content

Commit 1fbb4d2

Browse files
fiskeryyx990803
authored andcommitted
chore: use const instead of let (#283)
1 parent e5d60a0 commit 1fbb4d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime-core/src/warning.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type ComponentVNode = VNode & {
77
type: Component
88
}
99

10-
let stack: VNode[] = []
10+
const stack: VNode[] = []
1111

1212
type TraceEntry = {
1313
vnode: ComponentVNode

0 commit comments

Comments
 (0)