Skip to content

Commit a59f18a

Browse files
committed
fix
1 parent f677792 commit a59f18a

File tree

1 file changed

+1
-1
lines changed
  • packages/svelte/src/compiler/phases/3-transform/client/transform-template

1 file changed

+1
-1
lines changed

packages/svelte/src/compiler/phases/3-transform/client/transform-template/to-functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function build(item) {
7070
}
7171

7272
case 'text': {
73-
return b.literal(item.nodes.map((node) => node.data).join(','));
73+
return b.literal(item.nodes.map((node) => node.data).join(''));
7474
}
7575
}
7676
}

0 commit comments

Comments
 (0)