refactor(auth): make COOKIE_NAME a private module-level constant

This commit is contained in:
2026-04-22 14:41:53 -04:00
parent fd98f87e5a
commit f5c8dc842d
+1 -1
View File
@@ -82,7 +82,7 @@ function validateAntiBotFields(formData) {
return { valid: true };
}
export const COOKIE_NAME = getSessionCookieName();
const COOKIE_NAME = getSessionCookieName();
export async function registerAction(formData) {
try {