Skip to content

Commit 4128416

Browse files
authored
feat: mention minADA asset cost as a setup fee (#119)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 95d4e60 commit 4128416

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/VpnInstance.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const VpnInstance = ({
113113
onClick={onConfirmRenewal}
114114
disabled={!selectedRenewDuration}
115115
>
116-
<p className="font-light text-sm">Confirm Renewal</p>
116+
<p className="font-light text-sm">Renew</p>
117117
</button>
118118
</div>
119119
)}
@@ -129,4 +129,4 @@ const VpnInstance = ({
129129
)
130130
}
131131

132-
export default VpnInstance
132+
export default VpnInstance

src/pages/Account.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ const Account = () => {
458458
className="text-lg flex justify-center items-center gap-2 w-full bg-[#000000A6] rounded-md py-3 px-2.5"
459459
{...(showTooltips && { 'data-tooltip-id': 'price-tooltip' })}
460460
>
461-
{selectedOption ? `${formatPrice(selectedOption.price)} ADA` : ''}
461+
{selectedOption ? `${formatPrice(selectedOption.price)} ADA + 1.7 ADA setup fee` : ''}
462462
</div>
463463
</>
464464
) : (

0 commit comments

Comments
 (0)