From 23367f7d2e884d25ec136954b91f84a20eab8b99 Mon Sep 17 00:00:00 2001 From: t404owo Date: Sun, 7 Dec 2025 18:35:03 +0100 Subject: [PATCH] Change Supabase anon key to a publishable key Updated Supabase anon key to a publishable key for security. --- assets/js/mail.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/mail.js b/assets/js/mail.js index 285ffbb..d39a0e6 100644 --- a/assets/js/mail.js +++ b/assets/js/mail.js @@ -2,7 +2,7 @@ import { createClient } from "https://cdn.jsdelivr.net/npm/@supabase/supabase-js const supabaseUrl = "https://owbamcqdmqetrgcznxva.supabase.co"; const supabaseKey = - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im93YmFtY3FkbXFldHJnY3pueHZhIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MjI5NDU5NjIsImV4cCI6MjAzODUyMTk2Mn0.xNen7b513ZGwJ-Qu5iZ6K8qrmvy4QVjS10wiYbEEwKc"; + "sb_publishable_b0fMYw5I1X97gQXJLVBnrA_-0L4qHGv"; //anon key, you cant access private stuffs or add hilarious stuffs w/ this... //(unless sending me some malicious links but I delete your msg) //the moment you notice you need an API endpoint. @@ -47,4 +47,4 @@ form.addEventListener("submit", async (e) => { statusMessage.textContent = "Error sending message. Please try again."; statusMessage.style = "background: #FFDCDC"; } -}); \ No newline at end of file +});