diff options
author | Florian Dold <florian@dold.me> | 2022-08-09 15:00:45 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-08-16 17:55:12 +0200 |
commit | ac8f116780a860c8f4acfdf5553bf90d76afe236 (patch) | |
tree | 38abecb5ad3a3660161909ee9ca229d4ce08eb4a /packages/anastasis-webui | |
parent | fb8372dfbf27b7b4e8b2fe4f81aa2ba18bfcf638 (diff) |
implement peer to peer push payments
Diffstat (limited to 'packages/anastasis-webui')
-rw-r--r-- | packages/anastasis-webui/src/components/menu/SideBar.tsx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/packages/anastasis-webui/src/components/menu/SideBar.tsx b/packages/anastasis-webui/src/components/menu/SideBar.tsx index 7cc65a62d..f83131ae1 100644 --- a/packages/anastasis-webui/src/components/menu/SideBar.tsx +++ b/packages/anastasis-webui/src/components/menu/SideBar.tsx @@ -28,15 +28,14 @@ interface Props { mobile?: boolean; } -const VERSION: string = process.env.__VERSION__ || "dev"; -const GIT_HASH: string | undefined = process.env.__GIT_HASH__; +// @ts-ignore +const maybeEnv = process?.env || {}; + +const VERSION: string = maybeEnv.__VERSION__ || "dev"; +const GIT_HASH: string | undefined = maybeEnv.__GIT_HASH__; const VERSION_WITH_HASH = GIT_HASH ? `${VERSION}-${GIT_HASH}` : VERSION; export function Sidebar({ mobile }: Props): VNode { - // const config = useConfigContext(); - const config = { version: "none" }; - // FIXME: add replacement for __VERSION__ with the current version - const process = { env: { __VERSION__: "0.0.0" } }; const reducer = useAnastasisContext()!; function saveSession(): void { |