fix: lint

This commit is contained in:
Nicholas Tindle
2025-10-17 14:02:23 -05:00
parent 865abdb9e0
commit 65f2c04ef1
2 changed files with 5 additions and 2 deletions

View File

@@ -38,7 +38,10 @@ export default function AuthErrorPage() {
}
// Check if this is a waitlist/not allowed error
const isWaitlistError = isWaitlistErrorFromParams(errorCode, errorDescription);
const isWaitlistError = isWaitlistErrorFromParams(
errorCode,
errorDescription,
);
if (isWaitlistError) {
return (

View File

@@ -29,7 +29,7 @@ export function isWaitlistError(error: any): boolean {
*/
export function isWaitlistErrorFromParams(
errorCode?: string | null,
errorDescription?: string | null
errorDescription?: string | null,
): boolean {
if (!errorDescription) return false;