Skip to content

Commit 347dc90

Browse files
committed
Fix Locale on Join
1 parent 5192b85 commit 347dc90

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/[locale]/join/[roomId]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ export default function JoinPage({ params }: JoinPageProps) {
368368
: "bg-purple-100 text-purple-700"
369369
}`}
370370
>
371-
{state.currentVote === "real" ? t("real") : t("ai")}
371+
{state.currentVote === "real" ? tGame("real") : tGame("ai")}
372372
</div>
373373
<p className="text-gray-500">{t("waitingForResults")}</p>
374374
</div>

0 commit comments

Comments
 (0)