fix(SW-126): remove feature flag communications settings in profile

This commit is contained in:
Michael Zetterberg
2024-10-22 07:09:26 +02:00
parent 7e40c784f6
commit 1e92348fb4

View File

@@ -1,5 +1,3 @@
import { env } from "@/env/server"
import Divider from "@/components/TempDesignSystem/Divider"
import type { ProfileLayoutProps } from "@/types/components/myPages/myProfile/layout"
@@ -17,7 +15,7 @@ export default function ProfileLayout({
{profile}
<Divider color="burgundy" opacity={8} />
{creditCards}
{env.HIDE_FOR_NEXT_RELEASE ? null : communication}
{communication}
</section>
</main>
)