Skip to content

Commit b0ee92d

Browse files
committed
refactor(web): function name change
1 parent b799786 commit b0ee92d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/netlify/functions/update-settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const SUPABASE_KEY = process.env.SUPABASE_CLIENT_API_KEY;
1111
const SUPABASE_URL = process.env.SUPABASE_URL;
1212
const supabase = createClient(SUPABASE_URL!, SUPABASE_KEY!);
1313

14-
export const uploadSettingsToSupabase = async function (event: any, context: any) {
14+
export const handler = async function (event: any, context: any) {
1515
try {
1616
const { message, address, signature } = JSON.parse(event.body);
1717
const email = message.split("Email:").pop().split(",Nonce:")[0].trim();

0 commit comments

Comments
 (0)