1. 문제 발생❓"use client";import ChampionCard from "@/components/championCard";import { Champion } from "@/types/Champion";import { ChampionRotation } from "@/types/ChampionRotation";import { getChampionRotation } from "@/utils/rioApi";import { getChampionList, getVersion } from "@/utils/serverApi";import { useEffect, useState } from "react";function RotationPage() { const [version, setVersion] = u..