diff --git a/src/AppWithNavigator.tsx b/src/AppWithNavigator.tsx index cae8572..f343fde 100644 --- a/src/AppWithNavigator.tsx +++ b/src/AppWithNavigator.tsx @@ -180,6 +180,9 @@ const START_PARAM_ROUTES: Array<{ re: RegExp; to: (match: RegExpExecArray) => st // «Продлить» links for expired subscriptions in the bot's rich main menu. { re: /^renew_(\d+)$/, to: (match) => `/subscriptions/${match[1]}/renew` }, { re: /^subscriptions$/, to: () => '/subscriptions' }, + // Paid-trial «Активировать триал» link in the bot's rich main menu — the + // dashboard renders TrialOfferCard with the pay-and-activate flow. + { re: /^trial$/, to: () => '/' }, ]; /**