Skip to content

Commit

Permalink
Merge pull request #162 from Make-A-Wish-Sopt/jiyoung_#161
Browse files Browse the repository at this point in the history
[FIX] 수수료 비율 수정
  • Loading branch information
wlwpfh authored Dec 23, 2023
2 parents 7793c9a + bb493c5 commit 5636cfb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/sopterm/makeawish/common/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@

public class Util {

private static final float FEE = 0.034f;

private static final float FEE = 0f;
public static int getPriceAppliedFee(int price) {
return (int)Math.floor(price * (1 - FEE));
}
Expand Down

0 comments on commit 5636cfb

Please sign in to comment.