Skip to content

Commit 2a9e379

Browse files
committed
chore: remove unused args passed to ssrRender
1 parent 05f94cf commit 2a9e379

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

packages/server-renderer/src/render.ts

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -182,17 +182,7 @@ function renderComponentSubTree(
182182
// set current rendering instance for asset resolution
183183
const prev = setCurrentRenderingInstance(instance)
184184
try {
185-
ssrRender(
186-
instance.proxy,
187-
push,
188-
instance,
189-
attrs,
190-
// compiler-optimized bindings
191-
instance.props,
192-
instance.setupState,
193-
instance.data,
194-
instance.ctx
195-
)
185+
ssrRender(instance.proxy, push, instance, attrs)
196186
} finally {
197187
setCurrentRenderingInstance(prev)
198188
}

0 commit comments

Comments
 (0)