alexcdev1 5 miesięcy temu
rodzic
commit
1f42a63998
1 zmienionych plików z 1 dodań i 1 usunięć
  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");