Skip to content

Commit

Permalink
fix scanner success text
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent550102 committed Feb 28, 2024
1 parent 625c930 commit e8c98a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(game)/scanner/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function Page() {
}
const result = await sendPuzzle2Player(playerToken, boothToken);
if (result === puzzleSuccess) {
setInfo({ title: "已完成", msg: "恭喜獲得一塊拼圖!!" });
setInfo({ title: "已完成", msg: "恭喜獲得拼圖!!" });
} else if (result === puzzleTaken) {
setInfo({ title: "失敗", msg: "此拼圖已存在。" });
} else if (result === invalidToken) {
Expand Down

0 comments on commit e8c98a5

Please sign in to comment.