💄 Optimize unauthorized status

This commit is contained in:
2026-01-02 14:33:41 +08:00
parent 3b13a63e7b
commit 800815c721
4 changed files with 84 additions and 34 deletions

View File

@@ -603,11 +603,13 @@ class ChatListScreen extends HookConsumerWidget {
),
),
),
body: ChatListBodyWidget(
isFloating: false,
tabController: tabController,
selectedTab: selectedTab,
),
body: userInfo.value == null
? const ResponseUnauthorizedWidget()
: ChatListBodyWidget(
isFloating: false,
tabController: tabController,
selectedTab: selectedTab,
),
);
}
}