alexcdev1 5 mēneši atpakaļ
vecāks
revīzija
1f42a63998
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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 () => {
     const fetchPredictions = async () => {
       try {
       try {
         const response = await fetch(
         const response = await fetch(
-          `/api/prediction?userId=${currentUser?.id || ""}`
+          `/api/prediction?username=${currentUser?.username || ""}`
         );
         );
         if (!response.ok) {
         if (!response.ok) {
           throw new Error("Failed to fetch predictions");
           throw new Error("Failed to fetch predictions");