Merged in fix/hide-cs-rewards-flag (pull request #1065)

fix: hide new cs rewards model behind feature flag

Approved-by: Michael Zetterberg
Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Christian Andolf
2024-12-11 08:55:46 +00:00
11 changed files with 105 additions and 22 deletions

View File

@@ -53,7 +53,7 @@ export default function ClientCurrentRewards({
{reward.label}
</Title>
</div>
{showRedeem && (
{showRedeem && "redeem_description" in reward && (
<div className={styles.btnContainer}>
<Redeem reward={reward} />
</div>