Add feature flag for showing upgrade project modal

This commit is contained in:
Daniel Hougaard
2024-02-13 14:33:46 +01:00
parent 8f3de3cc90
commit 5156971d75

View File

@@ -84,6 +84,7 @@ export const UpgradeProjectAlert = ({ project }: UpgradeProjectAlertProps): JSX.
(currentStatus === null && statusIsLoading)) &&
projectStatus?.status !== "FAILED";
if (process.env.NEXT_PUBLIC_SHOW_UPGRADE_PROJECT !== "true") return null;
if (project.version !== "v1") return null;
if (membership.role !== "admin") return null;