File tree 3 files changed +6
-6
lines changed
members/MemberContent/MemberInfo
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " tmac-website" ,
3
3
"description" : " Website for the Texas Music Administrators Conference" ,
4
- "version" : " 2.30.0 " ,
4
+ "version" : " 2.30.1 " ,
5
5
"repository" : {
6
6
"type" : " git" ,
7
7
"url" : " https://github.com/m2mathew/tmac-website"
Original file line number Diff line number Diff line change @@ -113,12 +113,12 @@ const MemberStatus: React.FC<Props> = ({ currentMemberData }) => {
113
113
114
114
const needsToPay = ! currentMemberData ?. AmountPaid ;
115
115
116
- const amountToPay = currentMemberData ?. MemberType === 'Active' ? 50 .00 : 30.00 ;
116
+ const amountToPay = currentMemberData ?. MemberType === 'Active' ? 75 .00 : 30.00 ;
117
117
118
118
const handleSuccessfulPayment = useCallback ( async ( payment : PaypalPayment ) => {
119
119
const updatedMemberData = {
120
120
...currentMemberData ,
121
- AmountPaid : currentMemberData ?. MemberType === 'Active' ? 50 : 30 ,
121
+ AmountPaid : currentMemberData ?. MemberType === 'Active' ? 75 : 30 ,
122
122
PaypalPayerID : payment ?. payerID ,
123
123
PaypalPaymentID : payment ?. paymentID ,
124
124
PaymentOption : payment ?. paymentID ? 'Paypal' : 'Invoiced' ,
@@ -205,8 +205,8 @@ const MemberStatus: React.FC<Props> = ({ currentMemberData }) => {
205
205
>
206
206
Outstanding balance:
207
207
< StyledStrong >
208
- { ! isRegisteredForCurrentYear && '$50 .00' }
209
- { needsToPay && currentMemberData ?. MemberType === 'Active' && '$50 .00' }
208
+ { ! isRegisteredForCurrentYear && '$75 .00' }
209
+ { needsToPay && currentMemberData ?. MemberType === 'Active' && '$75 .00' }
210
210
{ currentMemberData ?. MemberType === 'Retired' && '$30.00' }
211
211
{ ! needsToPay && '$0.00' }
212
212
</ StyledStrong >
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ const InvoiceTable: React.FC<Props> = ({
80
80
} ) => {
81
81
// Work out the correct amount
82
82
const isString = typeof amount === 'string' ;
83
- const updatedAmount = amount === 0 ? 50 : amount ;
83
+ const updatedAmount = amount === 0 ? 75 : amount ;
84
84
const formattedAmount = isString ? updatedAmount : `$${ Number ( updatedAmount ) ?. toFixed ( 2 ) . toLocaleString ( ) } ` ;
85
85
86
86
const hasAddedFallConferenceFee = Number ( amount ) > 100 ;
You can’t perform that action at this time.
0 commit comments