Skip to content

Commit 99c5aaf

Browse files
committed
✏️ Fix invalid ending comma in API instructions
Closes #1022
1 parent 32b2bb6 commit 99c5aaf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/builder/src/features/preview/components/ApiPreviewInstructions.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const ApiPreviewInstructions = (props: StackProps) => {
2323
: undefined
2424

2525
const replyBody = `{
26-
"message": "This is my reply",
26+
"message": "This is my reply"
2727
}`
2828

2929
return (

apps/builder/src/features/publish/components/embeds/modals/ApiModal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const ApiModal = ({
2929
const { typebot } = useTypebot()
3030

3131
const replyBody = `{
32-
"message": "This is my reply",
32+
"message": "This is my reply"
3333
}`
3434

3535
return (

0 commit comments

Comments
 (0)