Skip to content

Commit 42a421a

Browse files
committed
wip: hydration for slots
1 parent ca34d4a commit 42a421a

File tree

10 files changed

+437
-47
lines changed

10 files changed

+437
-47
lines changed

packages/compiler-vapor/src/generators/operation.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function genOperationWithInsertionState(
4444
): CodeFragment[] {
4545
const [frag, push] = buildCodeFragment()
4646
if (isBlockOperation(oper) && oper.parent) {
47-
push(...genInsertionstate(oper, context))
47+
push(...genInsertionState(oper, context))
4848
}
4949
push(...genOperation(oper, context))
5050
return frag
@@ -152,7 +152,7 @@ export function genEffect(
152152
return frag
153153
}
154154

155-
function genInsertionstate(
155+
function genInsertionState(
156156
operation: InsertionStateTypes,
157157
context: CodegenContext,
158158
): CodeFragment[] {

0 commit comments

Comments
 (0)