We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b799786 commit b0ee92dCopy full SHA for b0ee92d
web/netlify/functions/update-settings.ts
@@ -11,7 +11,7 @@ const SUPABASE_KEY = process.env.SUPABASE_CLIENT_API_KEY;
11
const SUPABASE_URL = process.env.SUPABASE_URL;
12
const supabase = createClient(SUPABASE_URL!, SUPABASE_KEY!);
13
14
-export const uploadSettingsToSupabase = async function (event: any, context: any) {
+export const handler = async function (event: any, context: any) {
15
try {
16
const { message, address, signature } = JSON.parse(event.body);
17
const email = message.split("Email:").pop().split(",Nonce:")[0].trim();
0 commit comments