We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 684e47c commit 619420cCopy full SHA for 619420c
packages/compiler-vapor/src/generators/operation.ts
@@ -44,7 +44,7 @@ export function genOperationWithInsertionState(
44
): CodeFragment[] {
45
const [frag, push] = buildCodeFragment()
46
if (isBlockOperation(oper) && oper.parent) {
47
- push(...genInsertionstate(oper, context))
+ push(...genInsertionState(oper, context))
48
}
49
push(...genOperation(oper, context))
50
return frag
@@ -152,7 +152,7 @@ export function genEffect(
152
153
154
155
-function genInsertionstate(
+function genInsertionState(
156
operation: InsertionStateTypes,
157
context: CodegenContext,
158
0 commit comments