From 00e50b2dcfed209669c46da54dc07905d65887b8 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 1 Aug 2024 22:07:29 +0900 Subject: chore(frontend): [biome] organize imports --- frontend/app/components/GolfPlayApp.client.tsx | 10 +++++----- frontend/app/components/GolfWatchApp.client.tsx | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'frontend/app/components') diff --git a/frontend/app/components/GolfPlayApp.client.tsx b/frontend/app/components/GolfPlayApp.client.tsx index 2179b42..0ab8fff 100644 --- a/frontend/app/components/GolfPlayApp.client.tsx +++ b/frontend/app/components/GolfPlayApp.client.tsx @@ -1,12 +1,12 @@ -import type { components } from "../.server/api/schema"; -import { useState, useEffect } from "react"; +import { useEffect, useState } from "react"; import useWebSocket, { ReadyState } from "react-use-websocket"; import { useDebouncedCallback } from "use-debounce"; +import type { components } from "../.server/api/schema"; import GolfPlayAppConnecting from "./GolfPlayApps/GolfPlayAppConnecting"; -import GolfPlayAppWaiting from "./GolfPlayApps/GolfPlayAppWaiting"; -import GolfPlayAppStarting from "./GolfPlayApps/GolfPlayAppStarting"; -import GolfPlayAppGaming from "./GolfPlayApps/GolfPlayAppGaming"; import GolfPlayAppFinished from "./GolfPlayApps/GolfPlayAppFinished"; +import GolfPlayAppGaming from "./GolfPlayApps/GolfPlayAppGaming"; +import GolfPlayAppStarting from "./GolfPlayApps/GolfPlayAppStarting"; +import GolfPlayAppWaiting from "./GolfPlayApps/GolfPlayAppWaiting"; type WebSocketMessage = components["schemas"]["GamePlayerMessageS2C"]; diff --git a/frontend/app/components/GolfWatchApp.client.tsx b/frontend/app/components/GolfWatchApp.client.tsx index 5990fd4..0373944 100644 --- a/frontend/app/components/GolfWatchApp.client.tsx +++ b/frontend/app/components/GolfWatchApp.client.tsx @@ -1,11 +1,11 @@ -import type { components } from "../.server/api/schema"; -import { useState, useEffect } from "react"; +import { useEffect, useState } from "react"; import useWebSocket, { ReadyState } from "react-use-websocket"; +import type { components } from "../.server/api/schema"; import GolfWatchAppConnecting from "./GolfWatchApps/GolfWatchAppConnecting"; -import GolfWatchAppWaiting from "./GolfWatchApps/GolfWatchAppWaiting"; -import GolfWatchAppStarting from "./GolfWatchApps/GolfWatchAppStarting"; -import GolfWatchAppGaming from "./GolfWatchApps/GolfWatchAppGaming"; import GolfWatchAppFinished from "./GolfWatchApps/GolfWatchAppFinished"; +import GolfWatchAppGaming from "./GolfWatchApps/GolfWatchAppGaming"; +import GolfWatchAppStarting from "./GolfWatchApps/GolfWatchAppStarting"; +import GolfWatchAppWaiting from "./GolfWatchApps/GolfWatchAppWaiting"; type WebSocketMessage = components["schemas"]["GameWatcherMessageS2C"]; -- cgit v1.2.3-70-g09d2