mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-24 14:26:23 +02:00
🐛 Fix wrong value used for app version fallback
This commit is contained in:
parent
3d9dd00736
commit
e24ceee25c
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ const Feedback = dynamic(() => import("../feedback"), { ssr: false });
|
|||
|
||||
const appVersion = process.env.NEXT_PUBLIC_APP_VERSION
|
||||
? `v${process.env.NEXT_PUBLIC_APP_VERSION}`
|
||||
: "v2.8.0";
|
||||
: null;
|
||||
|
||||
const AppVersion = () => {
|
||||
if (!appVersion) return null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue