remove currency code from invoice email total display

This commit is contained in:
Alaguraj0361 2026-05-20 11:02:37 +05:30
parent b9b1f74a36
commit 289b326844

View File

@ -170,7 +170,7 @@ const sendEmailWithAttachment = async (toEmail, orderData, pdfBuffer) => {
<tr style="border-top: 1px solid #e2e8f0;">
<td style="padding: 15px 0 0 0; font-family: Helvetica, Arial, sans-serif; font-size: 14px; font-weight: bold; color: #475569;">Total</td>
<td style="padding: 15px 0 0 0; text-align: right; font-family: Helvetica, Arial, sans-serif; font-size: 20px; font-weight: bold; color: #1e293b;">
${currencySymbol}${total} <span style="font-size: 12px; color: #64748b; font-weight: normal;">${orderData.currency}</span>
${currencySymbol}${total}
</td>
</tr>
</table>