Skip to content

Commit 8dab16b

Browse files
author
Dominus Vilicus
authored
Prevent newline from failing tests
1 parent 525c984 commit 8dab16b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/compiler/compile/render_ssr/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,7 @@ export default function ssr(
162162
${component.fully_hoisted}
163163
164164
const ${name} = @create_ssr_component(($$result, $$props, $$bindings, $$slots) => {
165-
${options.hash ? `$$result.registeredComponents.add('${options.hash}');` : ''}
166-
${blocks}
165+
${options.hash ? `$$result.registeredComponents.add('${options.hash}');` : ''}${blocks}
167166
});
168167
`;
169168

0 commit comments

Comments
 (0)