Files
stadtwerke/innungsapp/apps/mobile/lib/org-config.ts
Timo Knuth 253c3c1c6d push
2026-02-27 15:19:24 +01:00

10 lines
233 B
TypeScript

import Constants from 'expo-constants'
export function getOrgSlug(): string {
return (
process.env.EXPO_PUBLIC_ORG_SLUG ??
(Constants.expoConfig?.extra as { orgSlug?: string } | undefined)?.orgSlug ??
'tischler'
)
}