diff --git a/src/components/dormitoryTopIllustsContainer.tsx b/src/components/dormitoryTopIllustsContainer.tsx index 141095ca6..45be7642a 100644 --- a/src/components/dormitoryTopIllustsContainer.tsx +++ b/src/components/dormitoryTopIllustsContainer.tsx @@ -31,9 +31,12 @@ export default ({ id }: { id: string }) => { "さよなか", "レイア", "のんたお", + "菊の字", ] if (topIllusts.length !== illustrators.length) { - throw new Error("イラストレーターの数とトップイラストの数が一致しません") + throw new Error( + `イラストレーターの数とトップイラストの数が一致しません ${topIllusts.length} !== ${illustrators.length}` + ) } // モーダル diff --git a/src/images/dormitory/top-illusts/top-illust-008.png b/src/images/dormitory/top-illusts/top-illust-008.png new file mode 100644 index 000000000..dd76c20b1 Binary files /dev/null and b/src/images/dormitory/top-illusts/top-illust-008.png differ diff --git a/src/pages/dormitory.tsx b/src/pages/dormitory.tsx index 0820613c9..d4b164450 100644 --- a/src/pages/dormitory.tsx +++ b/src/pages/dormitory.tsx @@ -9,7 +9,7 @@ import "../components/layout.scss" import { Page } from "../components/page" import Seo from "../components/seo" import { useDetailedCharacterInfo } from "../hooks/useDetailedCharacterInfo" -import shareThumb from "../images/dormitory/top-illusts/top-illust-007.png" +import shareThumb from "../images/dormitory/top-illusts/top-illust-008.png" type DormitoryProps = { setShowingHeader: (show: boolean) => void