feat(LOY-64): add ActiveRedeemedBadge UI for on site tier rewards

This commit is contained in:
Chuma McPhoy
2024-12-11 09:32:42 +01:00
parent 2e2b651e15
commit 457f2b942d
15 changed files with 184 additions and 44 deletions

View File

@@ -27,10 +27,12 @@ export interface CurrentRewardsClientProps {
rewards: (Reward | RewardWithRedeem)[]
pageSize: number
showRedeem: boolean
memberId?: string | null
}
export interface RedeemProps {
reward: RewardWithRedeem
memberId?: string | null
}
export type RedeemModalState = "unmounted" | "hidden" | "visible"