Skip to content

Commit

Permalink
fix: wrong group fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
punchanabu committed Oct 13, 2024
1 parent 53451a8 commit 2e60a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default function Home() {
type_id: string;
}) => {
const resA = await getMatchSub({ type_id, group_id : "A" });
const resB = await getMatchSub({ type_id, group_id : "A" });
const resB = await getMatchSub({ type_id, group_id : "B" });
setTeamA(resA?.data)
setTeamB(resB?.data);
};
Expand Down

0 comments on commit 2e60a2b

Please sign in to comment.