summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/page.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/page.tsx b/app/page.tsx
index d3dfc9e..b3c00b8 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -17,12 +17,12 @@ import { getAuth } from "./lib/api/auth";
type AuthLike = { email?: string; token?: string } | string | null;
const DRIVER_EMAILS = new Set(
- ["driverindoteknik@gmail.com", "it@fixcomart.co.id", "sulistianaridwan8@gmail.com"].map(
+ ["driverindoteknik@gmail.com", "sulistianaridwan8@gmail.com"].map(
(e) => e.toLowerCase()
)
);
const DISPATCH_EMAILS = new Set(
- ["rahmat.afiudin@gmail.com", "it@fixcomart.co.id"].map((e) => e.toLowerCase())
+ ["rahmat.afiudin@gmail.com", "indraprtama60@gmail.com", "it@fixcomart.co.id"].map((e) => e.toLowerCase())
);
function extractEmailFromAuth(auth: AuthLike): string | null {