Skip to content

Commit d5cf816

Browse files
authored
Apply suggestions from code review
1 parent 74164c5 commit d5cf816

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

handler/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44
export const handler = async function(event) {
55
if (req.httpMethod === 'OPTIONS') {
6-
return { statusCode: 200 }
6+
return { statusCode: 200 };
77
}
88
let location = '/graphql';
99
if (event.queryStringParameters) {

handler/swapi.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44
export const handler = async function(event) {
55
if (req.httpMethod === 'OPTIONS') {
6-
return { statusCode: 200 }
6+
return { statusCode: 200 };
77
}
88
let location = '/graphql';
99
if (event.queryStringParameters) {

0 commit comments

Comments
 (0)