mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 17:43:47 +00:00
fix: back button goes to dashboard in single-tariff to prevent redirect loop
In single-tariff mode, Subscriptions list auto-redirects to detail page. Back button from detail now goes to / (dashboard) instead of /subscriptions, breaking the redirect loop.
This commit is contained in:
@@ -491,7 +491,7 @@ export default function Subscription() {
|
|||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
{/* Page title */}
|
{/* Page title */}
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<WebBackButton to="/subscriptions" />
|
<WebBackButton to={isMultiTariff ? '/subscriptions' : '/'} />
|
||||||
<h1 className="text-2xl font-bold text-dark-50 sm:text-3xl">
|
<h1 className="text-2xl font-bold text-dark-50 sm:text-3xl">
|
||||||
{isMultiTariff && subscription?.tariff_name
|
{isMultiTariff && subscription?.tariff_name
|
||||||
? subscription.tariff_name
|
? subscription.tariff_name
|
||||||
|
|||||||
Reference in New Issue
Block a user