alexcdev1 5 月之前
父节点
当前提交
1f42a63998
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/app/ui/MatchPrediction.jsx

+ 1 - 1
src/app/ui/MatchPrediction.jsx

@@ -83,7 +83,7 @@ const MatchPrediction = ({ selectedDayMatches, currentUser }) => {
     const fetchPredictions = async () => {
       try {
         const response = await fetch(
-          `/api/prediction?userId=${currentUser?.id || ""}`
+          `/api/prediction?username=${currentUser?.username || ""}`
         );
         if (!response.ok) {
           throw new Error("Failed to fetch predictions");