Skip to content

Commit 35f2081

Browse files
Remove unused async keyword (#16)
1 parent b570a97 commit 35f2081

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/getting-started-template/src/app/app.functions/example-function.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
exports.main = async (context = {}, sendResponse) => {
1+
exports.main = (context = {}, sendResponse) => {
22
const { text } = context.parameters;
33

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

0 commit comments

Comments
 (0)