Skip to content

Commit

Permalink
Tweak api key exposure function.
Browse files Browse the repository at this point in the history
  • Loading branch information
Heathcorp committed Mar 13, 2024
1 parent 2ae32ac commit a1a2127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ initializeApp();

export const helloWorld = https.onRequest((request, response) => {
// logger.info("Hello logs!", { structuredData: true });
response.send("Hello from Firebase!" + " " + CF_TURNSTILE_KEY);
response.send("Hello from Firebase!" + " " + CF_TURNSTILE_KEY.value());
});

// extreme cases where we need to shut off the button but still show a count
Expand Down

0 comments on commit a1a2127

Please sign in to comment.