Skip to content

Commit

Permalink
[fix] ランキングのRankingListAllのapiをallに修正
Browse files Browse the repository at this point in the history
  • Loading branch information
TkymHrt committed Nov 16, 2024
1 parent a905fce commit da6cf71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/components/view/ranking/RankingListAll.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function RankingListWeekly() {
useEffect(() => {
const fetchData = () => {
setIsLoading(true);
return fetch("/api/score/week")
return fetch("/api/score/all")
.then((response) => {
if (!response.ok) {
throw new Error("Failed to fetch data");
Expand Down

0 comments on commit da6cf71

Please sign in to comment.