alpha
Login
or
Join now
atpota.to
/
cred.blue
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix url
author
damedotblog
date
1 year ago
(Feb 24, 2025, 11:38 AM -0500)
commit
faa5a172
faa5a1726a447f42ac6bc3b1097140a36f7d7166
parent
607da7e6
607da7e6532cf2d972dbc2bebbbc3da685756f3b
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
src
components
Leaderboard
Leaderboard.js
+1
-1
src/components/Leaderboard/Leaderboard.js
Reviewed
···
54
54
console.log(`Fetching leaderboard data for scoreType: ${scoreType}`);
55
55
56
56
// Call the backend endpoint instead of directly querying Supabase
57
57
-
const response = await fetch(`/api/leaderboard?scoreType=${scoreType}&limit=100`);
57
57
+
const response = await fetch(`https://api.cred.blue/api/leaderboard?scoreType=${scoreType}&limit=100`);
58
58
59
59
// Check for non-200 responses
60
60
if (!response.ok) {