update type reward

This commit is contained in:
Raja Oktafrianto
2025-04-11 10:39:00 +07:00
parent cdec6aa3e4
commit ebc1037143

View File

@ -57,7 +57,9 @@ const AddDialog = () => {
const RewardType = {
'Daily Check in': 'D',
Referal: 'R'
Referal: 'R',
'Level Pro': 'P',
'Level Prioritas': 'L'
} as const;
type RewardTypeValue = (typeof RewardType)[keyof typeof RewardType];