Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions API_TRANSITION_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function sendWithAxios(message) {
// Do what you need with the message headers
// and body in this function, then send the
// event
axios({
return axios({
method: 'post',
url: '...',
data: message.body,
Expand All @@ -82,7 +82,7 @@ function sendWithAxios(message) {
// Do what you need with the message headers
// and body in this function, then send the
// event
axios({
return axios({
method: "post",
url: "...",
data: message.body,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function sendWithAxios(message) {
// Do what you need with the message headers
// and body in this function, then send the
// event
axios({
return axios({
method: "post",
url: "...",
data: message.body,
Expand Down