Skip to content

Commit

Permalink
Remove unused async keyword (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamara-at-hubspot authored Aug 16, 2023
1 parent b570a97 commit 35f2081
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
exports.main = async (context = {}, sendResponse) => {
exports.main = (context = {}, sendResponse) => {
const { text } = context.parameters;

const response = `This is coming from a serverless function! You entered: ${text}`;
Expand Down

0 comments on commit 35f2081

Please sign in to comment.