From 89c0a5b859ebd44a6160b12c04c96f9756eefa7f Mon Sep 17 00:00:00 2001 From: Emiel Van Severen Date: Wed, 17 Jul 2024 00:28:43 +0200 Subject: [PATCH] Chore: add buy for prefix to shop listing buy button --- .../-components/shop/ShopListingBuyForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web-main/src/routes/_auth/gameserver.$gameServerId/-components/shop/ShopListingBuyForm.tsx b/packages/web-main/src/routes/_auth/gameserver.$gameServerId/-components/shop/ShopListingBuyForm.tsx index e1522fe0e8..fd21ee216a 100644 --- a/packages/web-main/src/routes/_auth/gameserver.$gameServerId/-components/shop/ShopListingBuyForm.tsx +++ b/packages/web-main/src/routes/_auth/gameserver.$gameServerId/-components/shop/ShopListingBuyForm.tsx @@ -65,7 +65,7 @@ export const ShopListingBuyForm: FC = ({ fullWidth type="submit" disabled={playerCurrencyAmount < price} - text={`${price * watch('amount')} ${currencyName}`} + text={`Buy for ${price * watch('amount')} ${currencyName}`} /> );