When trying to deploy the template function after initialising firebase functions, I keep getting: HTTP Error: 400, The request has errors. Any ideas on what's going on?
Here's the relevant code.
export const helloWorld = functions.https.onRequest((request, response) => {
response.send("Hello from Firebase!");
});