From d23097b4e3ea46de914f55ec6ce445e2ef7aeabf Mon Sep 17 00:00:00 2001 From: Egor Date: Tue, 20 Jan 2026 14:43:46 +0300 Subject: [PATCH] Update ChannelSubscriptionScreen.tsx --- src/components/blocking/ChannelSubscriptionScreen.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/blocking/ChannelSubscriptionScreen.tsx b/src/components/blocking/ChannelSubscriptionScreen.tsx index bdc1ea3..98788f4 100644 --- a/src/components/blocking/ChannelSubscriptionScreen.tsx +++ b/src/components/blocking/ChannelSubscriptionScreen.tsx @@ -44,8 +44,9 @@ export default function ChannelSubscriptionScreen() { try { // Make any authenticated request - if channel check passes, it will succeed await apiClient.get('/cabinet/auth/me') - // If we get here, subscription is valid + // If we get here, subscription is valid - reload page clearBlocking() + window.location.reload() } catch (err: unknown) { // Check if it's still a channel subscription error const error = err as { response?: { status?: number; data?: { detail?: { code?: string } } } }