mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-12 13:49:22 -05:00
Fix warning with first-child
This commit is contained in:
parent
d3a14d77da
commit
ea274074f5
|
|
@ -13,11 +13,11 @@ const _Header = styled.header`
|
|||
align-items: center;
|
||||
padding: 1rem;
|
||||
|
||||
& > :first-child {
|
||||
& > :first-of-type {
|
||||
justify-self: flex-start;
|
||||
}
|
||||
|
||||
& > :last-child {
|
||||
& > :last-of-type {
|
||||
justify-self: flex-end;
|
||||
}
|
||||
`;
|
||||
|
|
|
|||
|
|
@ -7,6 +7,5 @@ export default function TournamentPage() {
|
|||
const { data, error } = useSWR(
|
||||
`/tournaments/${router.query.organization}/${router.query.tournament}`
|
||||
);
|
||||
console.log("error", error);
|
||||
return <InfoBanner />;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user