i18n
This commit is contained in:
@@ -2,6 +2,7 @@ import { Stack, Text } from "@mantine/core";
|
||||
import { useMemo } from "react";
|
||||
import { Match } from "../types";
|
||||
import MatchCard from "./match-card";
|
||||
import { Trans } from "@lingui/react/macro";
|
||||
|
||||
interface MatchListProps {
|
||||
matches: Match[];
|
||||
@@ -29,7 +30,7 @@ const MatchList = ({ matches, hideH2H = false }: MatchListProps) => {
|
||||
<Stack p="md" gap="sm">
|
||||
{isRegional && (
|
||||
<Text size="xs" c="dimmed" ta="center" px="md">
|
||||
Matches for regionals are unordered
|
||||
<Trans>Matches for regionals are unordered</Trans>
|
||||
</Text>
|
||||
)}
|
||||
{filteredMatches.map((match, index) => (
|
||||
|
||||
Reference in New Issue
Block a user