Skip to content

Commit e611722

Browse files
committed
lint
1 parent 8dfa848 commit e611722

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app/utils/auth-server.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,5 +227,7 @@ export async function getUserContextJwtFromCookie(): Promise<
227227
}
228228

229229
export function isMobilityDatabaseAdmin(email: string | undefined): boolean {
230-
return email?.trim().toLocaleLowerCase().endsWith('@mobilitydata.org') === true;
230+
return (
231+
email?.trim().toLocaleLowerCase().endsWith('@mobilitydata.org') === true
232+
);
231233
}

0 commit comments

Comments
 (0)