乱了, 懒得说是什么

This commit is contained in:
CrescentLeaf
2026-01-02 01:27:32 +08:00
parent bc603b8171
commit d4557ca0ae
10 changed files with 60 additions and 20 deletions

View File

@@ -77,7 +77,7 @@ export default function RecentChatsList({ ...props }: React.HTMLAttributes<HTMLE
).map((v) =>
<RecentsListItem
active={isMobileUI() ? false : shared.state.currentSelectedChatId == v.getId()}
onClick={() => AppState.openChat(v.getId())}
onClick={() => AppState.openChat(v.getId(), isMobileUI())}
key={v.getId()}
recentChat={v} />
)