Skip to content

Commit

Permalink
refactor(core): using JSX (#115)
Browse files Browse the repository at this point in the history
* refactor(core): using JSX

* chore(core): make up for missing changes
  • Loading branch information
Lipraty committed Nov 7, 2023
1 parent f07ba50 commit 6ebb68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/index.ts → packages/core/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,6 @@ export function apply(ctx: Context, config: Config) {
}
}

return output.length === 1 ? output[0] : `<message forward>${output.join('\n')}</message>`
return output.length === 1 ? output[0] : <message forward>{output.join('\n')}</message>
})
}

0 comments on commit 6ebb68e

Please sign in to comment.