i18n
CI/CD Pipeline / Build and Push PocketBase Docker Image (push) Successful in 8s
CI/CD Pipeline / i18n Catalog Check (push) Failing after 10s
CI/CD Pipeline / Build and Push App Docker Image (push) Skipped
CI/CD Pipeline / Deploy to Kubernetes (push) Skipped

This commit is contained in:
yohlo
2026-08-08 15:29:40 -07:00
parent 22c282d8fa
commit 0a7b5fa00f
178 changed files with 13099 additions and 1285 deletions
@@ -4,6 +4,7 @@ import TeamList from "@/features/teams/components/team-list";
import { StatsSkeleton } from "@/components/stats-overview";
import BadgeShowcaseSkeleton from "@/features/badges/components/badge-showcase-skeleton";
import HeaderSkeleton from "./header-skeleton";
import { useLingui } from "@lingui/react/macro";
const MatchCardSkeleton = ({ opacity = 1 }: { opacity?: number }) => (
<Paper px="md" py="md" withBorder radius="md" style={{ opacity }}>
@@ -58,17 +59,21 @@ const OverviewSkeleton = () => (
);
const ProfileSkeleton = () => {
const { t } = useLingui();
const tabs = [
{
label: "Overview",
label: t`Overview`,
value: "overview",
content: <OverviewSkeleton />,
},
{
label: "Matches",
label: t`Matches`,
value: "matches",
content: <MatchListSkeleton />,
},
{
label: "Teams",
label: t`Teams`,
value: "teams",
content: <TeamList teams={[]} loading />,
},
];