Skip to content

Commit b65b6b3

Browse files
committed
fix: adjusted output
1 parent 5ac100a commit b65b6b3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/server/jsonp.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ export const sendAsJsonP = (
3838
// the typeof check is just to reduce client error noise
3939
return res.send(
4040
// language=JS
41-
`/**/
42-
typeof ${callback} === 'function' && ${callback}((function (manifest) {
41+
`/**/ typeof ${callback} === 'function' && ${callback}((function (manifest) {
4342
return function (rootElement, customContext) {
4443
if (customContext) {
4544
if (!(typeof customContext === 'object')) {

0 commit comments

Comments
 (0)