diff --git a/src/app/(stats)/player/[ign]/_stats/bedwars/table.tsx b/src/app/(stats)/player/[ign]/_stats/bedwars/table.tsx
index 1a85ba9..1539c69 100644
--- a/src/app/(stats)/player/[ign]/_stats/bedwars/table.tsx
+++ b/src/app/(stats)/player/[ign]/_stats/bedwars/table.tsx
@@ -76,7 +76,7 @@ const ROWS: RowConfig[] = [
{ label: "All Modes", aggregateOf: SIMPLE_MODE_KEYS, bold: true }
]
-function StatRow({ cfg, stats }: { cfg: RowConfig, stats: NonNullStats["Bedwars"] }) {
+function StatRow({ cfg, stats }: { cfg: RowConfig, stats: NonNullable
}) {
const bedwars = stats as _BedwarsStats
let values: (number | string)[] = []
@@ -103,7 +103,7 @@ function StatRow({ cfg, stats }: { cfg: RowConfig, stats: NonNullStats["Bedwars"
)
}
-export default function BedwarsStatTable({ stats }: { stats: NonNullStats["Bedwars"] }) {
+export default function BedwarsStatTable({ stats }: { stats: NonNullable }) {
return (