Solved a visual bug
This commit is contained in:
@@ -120,12 +120,12 @@ export default function PaymentDue({user, hasExpired = false, clientID, reload}:
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex w-full flex-col items-start gap-2">
|
<div className="flex w-full flex-col items-start gap-2">
|
||||||
{!appliedDiscount && (
|
{appliedDiscount === 0 && (
|
||||||
<span className="text-2xl">
|
<span className="text-2xl">
|
||||||
{p.price} {p.currency}
|
{p.price} {p.currency}
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
{appliedDiscount && (
|
{appliedDiscount > 0 && (
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<span className="text-2xl line-through">
|
<span className="text-2xl line-through">
|
||||||
{p.price} {p.currency}
|
{p.price} {p.currency}
|
||||||
|
|||||||
Reference in New Issue
Block a user