diff options
| author | Miqdad <ahmadmiqdad27@gmail.com> | 2025-09-29 14:19:46 +0700 |
|---|---|---|
| committer | Miqdad <ahmadmiqdad27@gmail.com> | 2025-09-29 14:19:46 +0700 |
| commit | 199f1527b5b948291e9526625ae992ea4cfde3d9 (patch) | |
| tree | c5d5a2ce4e865a272e99cb5fdcdf7062063f9745 /app | |
| parent | ac9e210cc13ead8331644cdd5b16d95da95dbed2 (diff) | |
<Miqdad> add new user dispatch
Diffstat (limited to 'app')
| -rw-r--r-- | app/page.tsx | 4 |
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 { |
