Skip to content

Commit

Permalink
Lullabot#55 Fix stories with array args
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Ferrari committed Sep 3, 2024
1 parent 8a6690e commit 9aacd57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fetchStoryHtml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const fetchStoryHtml = async (
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(params),
body: JSON.stringify(context.args),
});
const htmlContents = await response.text();
if (response.status >= 399) {
Expand Down

0 comments on commit 9aacd57

Please sign in to comment.