Leaderboard: Implement simple points cumsum chart
All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 1m3s
All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 1m3s
This commit is contained in:
@ -1,4 +1,9 @@
|
||||
import { fetch_users, fetch_racepickpoints, fetch_racepickpointsacc } from "$lib/fetch";
|
||||
import {
|
||||
fetch_users,
|
||||
fetch_racepickpoints,
|
||||
fetch_racepickpointsacc,
|
||||
fetch_racepickpointstotal,
|
||||
} from "$lib/fetch";
|
||||
import type { PageLoad } from "../$types";
|
||||
|
||||
export const load: PageLoad = async ({ fetch, depends }) => {
|
||||
@ -8,5 +13,6 @@ export const load: PageLoad = async ({ fetch, depends }) => {
|
||||
users: fetch_users(fetch),
|
||||
racepickpoints: fetch_racepickpoints(fetch),
|
||||
racepickpointsacc: fetch_racepickpointsacc(fetch),
|
||||
racepickpointstotal: fetch_racepickpointstotal(fetch),
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user