feat: send language in payment requests for localized descriptions

- Add language field to balance topup and landing purchase requests
- Cap news article featured image height with max-h-96

Cherry-picked from PR #362 (without favicon change — files don't exist)
This commit is contained in:
Fringg
2026-03-29 05:18:40 +03:00
parent 07500ed215
commit 2b03e7e514
4 changed files with 6 additions and 1 deletions

View File

@@ -408,7 +408,7 @@ export default function NewsArticlePage() {
<img
src={article.featured_image_url}
alt={article.title}
className="h-auto w-full rounded-xl object-cover"
className="max-h-96 w-full rounded-xl object-cover"
loading="eager"
fetchPriority="high"
/>

View File

@@ -927,6 +927,7 @@ export default function QuickPurchase() {
contact_type: detectContactType(contactValue),
contact_value: contactValue.trim(),
payment_method: paymentMethod,
language: i18n.language,
is_gift: isGift,
};