From 1527433f577da86f113ca4ced1974499b7013730 Mon Sep 17 00:00:00 2001 From: Sea10wood Date: Thu, 15 Aug 2024 18:36:01 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Gallery=E3=81=AE=E3=82=BF=E3=82=A4?= =?UTF-8?q?=E3=83=9D=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cspell.json | 2 +- src/components/{Garelly => Gallery}/index.module.css | 0 src/components/{Garelly => Gallery}/index.tsx | 4 ++-- src/pages/yatai/index.tsx | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) rename src/components/{Garelly => Gallery}/index.module.css (100%) rename src/components/{Garelly => Gallery}/index.tsx (95%) diff --git a/cspell.json b/cspell.json index 28191e9..79138ac 100644 --- a/cspell.json +++ b/cspell.json @@ -2,5 +2,5 @@ "ignorePaths": ["node_modules/**", "*.svg"], "version": "0.2", "language": "en", - "words": ["NATSUMATSURI", "yatai", "Dela", "Yuji", "Syuku", "zustand", "wadaiko", "qrcode","nobori","Garelly","natsu","matsuri"] + "words": ["NATSUMATSURI", "yatai", "Dela", "Yuji", "Syuku", "zustand", "wadaiko", "qrcode","nobori","natsu","matsuri"] } diff --git a/src/components/Garelly/index.module.css b/src/components/Gallery/index.module.css similarity index 100% rename from src/components/Garelly/index.module.css rename to src/components/Gallery/index.module.css diff --git a/src/components/Garelly/index.tsx b/src/components/Gallery/index.tsx similarity index 95% rename from src/components/Garelly/index.tsx rename to src/components/Gallery/index.tsx index bd2871d..af3ee94 100644 --- a/src/components/Garelly/index.tsx +++ b/src/components/Gallery/index.tsx @@ -1,6 +1,6 @@ import styles from "./index.module.css"; -function Garelly() { +function Gallery() { return (
{/* biome-ignore lint/a11y/useMediaCaption: 夏祭りの音を再生します。 */} @@ -29,4 +29,4 @@ function Garelly() {
); } -export default Garelly; +export default Gallery; diff --git a/src/pages/yatai/index.tsx b/src/pages/yatai/index.tsx index 78bbb59..2d1598e 100644 --- a/src/pages/yatai/index.tsx +++ b/src/pages/yatai/index.tsx @@ -9,7 +9,6 @@ import type { Object3DEventMap, } from "three"; import { randFloat } from "three/src/math/MathUtils.js"; -import Garelly from "../../components/Garelly"; import { useSocketRefStore } from "../../store"; import { type ActionSchema, @@ -17,6 +16,7 @@ import { type Target, } from "../../type/shooting"; import styles from "./index.module.css"; +import Gallery from "../../components/Gallery"; const YataiStage = memo(() => { // 土台 @@ -217,7 +217,7 @@ function Yatai() {
- +
); }