Skip to content

Commit

Permalink
prizes: fix prizes minimum discount rate
Browse files Browse the repository at this point in the history
  • Loading branch information
GGonryun committed Aug 22, 2024
1 parent 7295d69 commit c2b2ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/services/prizes/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export class PrizeService {
id: prize.id,
},
data: {
discount: randomFloatBetween(0.01, 0.5),
discount: randomFloatBetween(0.1, 0.5),
status: PrizeStatus.ACTIVE,
},
});
Expand Down

0 comments on commit c2b2ee9

Please sign in to comment.