Remove 's' from 'image fees' in receipts

This commit is contained in:
ekzyis 2023-10-25 20:31:20 +02:00
parent 008510ee15
commit 8890517f40

View File

@ -28,7 +28,7 @@ function Receipt ({ cost, repetition, imageFees, baseFee, parentId, boost }) {
{imageFees && {imageFees &&
<tr> <tr>
<td>+ {imageFees.unpaid} x {numWithUnits(imageFees.fees, { abbreviate: false })}</td> <td>+ {imageFees.unpaid} x {numWithUnits(imageFees.fees, { abbreviate: false })}</td>
<td align='right' className='font-weight-light'>image fees</td> <td align='right' className='font-weight-light'>image fee</td>
</tr>} </tr>}
{boost > 0 && {boost > 0 &&
<tr> <tr>
@ -114,7 +114,7 @@ function EditReceipt ({ cost, paidSats, imageFees, boost, parentId }) {
{imageFees && {imageFees &&
<tr> <tr>
<td>+ {imageFees.unpaid} x {numWithUnits(imageFees.fees, { abbreviate: false })}</td> <td>+ {imageFees.unpaid} x {numWithUnits(imageFees.fees, { abbreviate: false })}</td>
<td align='right' className='font-weight-light'>image fees</td> <td align='right' className='font-weight-light'>image fee</td>
</tr>} </tr>}
{boost > 0 && {boost > 0 &&
<tr> <tr>