fix: 单人场景体验优化 — 跳过等待 spinner,适配结果文案

- SwipeDeck: userCount === 1 时不再显示"等待其他人完成选择"
- MatchResult: 单人时标题改为"帮你选好了",副标题改为"你的首选"
- MatchResult: 单人时隐藏"默契度 100%"徽章(无意义)
- 更新 ROADMAP 将 Solo 模式改为单人体验修复
This commit is contained in:
2026-02-26 14:15:14 +08:00
parent f8a64b3281
commit 4e60dc3cde
3 changed files with 12 additions and 10 deletions
+1 -1
View File
@@ -319,7 +319,7 @@ export default function SwipeDeck({
? restaurants.find((r) => r.id === resolvedMatchId) ?? null
: null;
const showWaiting = allSwiped && !resolvedMatchId;
const showWaiting = allSwiped && !resolvedMatchId && userCount > 1;
return (
<>