Fix Elo Page

This commit is contained in:
2024-03-09 14:23:11 +01:00
parent 30808bfd5b
commit 08371f57d1
2 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,7 @@
<script lang="ts">
import {t} from "astro-i18n";
import {statsRepo} from "@repo/stats.ts";
import "@styles/table.css";
export let gamemode: string;

View File

@ -3,7 +3,6 @@ import {createGetStaticPaths, t} from "astro-i18n";
import {getCollection, CollectionEntry} from "astro:content";
import PageLayout from "../../layouts/PageLayout.astro";
import EloTable from "../../components/EloTable.svelte";
import "@styles/table.css";
export const getStaticPaths = createGetStaticPaths(async () => {
const modes = await getCollection("modes", entry => entry.data.ranked);