Skip to content

Commit 7949ac3

Browse files
committed
Fix backend not starting
1 parent 59dd1a1 commit 7949ac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers/env-variable-helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function GetLogLevels(minLevel: string): LogLevel[] {
1919
return higherLevels;
2020
}
2121

22-
export const formatEmail = (email: string | undefined): typeof email => {
22+
export function formatEmail(email: string | undefined): typeof email {
2323
if (!email || typeof email !== "string") {
2424
return email;
2525
}

0 commit comments

Comments
 (0)