Small change

This commit is contained in:
2025-09-16 19:38:02 +02:00
parent 951d278562
commit 6c304fda16
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ function SortableStatItem({ id, children }: SortableStatItemProps) {
)
}
export default function PlayerStats(
export function PlayerStats(
{ stats, achievements, layout }: {
stats: NonNullable<Player["player"]["stats"]>
achievements: Player["player"]["achievements"]

View File

@@ -12,7 +12,7 @@ import { Metadata } from "next"
import { cookies } from "next/headers"
import { Suspense } from "react"
import z from "zod"
import PlayerStats, { PlayerPageLoadText } from "./_client"
import { PlayerPageLoadText, PlayerStats } from "./_client"
import Sidebar from "./_components/Sidebar"
export async function generateMetadata({ params }: { params: Promise<{ ign: string }> }): Promise<Metadata> {