From 484c3ad005616e16fc4280284048dcf674551057 Mon Sep 17 00:00:00 2001 From: c0mrade Date: Mon, 1 Jun 2026 18:19:57 +0300 Subject: [PATCH] fix(subscriptions): fill the orphan card so a lone subscription has no empty cell MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The My Subscriptions list is a 2-col grid on sm+, so a single subscription (e.g. one tariff in multi-tariff mode) left an empty cell. Stretch the last card to span both columns when it's the lone one in its row — same orphan-fill used for the news grid and admin stat cards. --- src/pages/Subscriptions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Subscriptions.tsx b/src/pages/Subscriptions.tsx index 283d860..67b64e8 100644 --- a/src/pages/Subscriptions.tsx +++ b/src/pages/Subscriptions.tsx @@ -165,7 +165,7 @@ export default function Subscriptions() { {/* Subscription grid */} {subscriptions.length > 0 && ( -
+
{subscriptions.map((sub) => (