Fix check script

Signed-off-by: Émile Ré <nemile.re@gmail.com>
This commit is contained in:
Émile Ré
2025-12-04 17:34:16 +04:00
parent cadadcbc38
commit a8859c0a08
2 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
import { ComponentType, Suspense } from "react";
import { RouteObject } from "react-router";
import { type ComponentType, Suspense } from "react";
import { type RouteObject } from "react-router";
export type AppRoute = Omit<RouteObject, "children"> & {
children?: AppRoute[];

View File

@@ -1,7 +1,7 @@
import { ComponentType } from "react";
import { EnvironmentProviderOptions, PreloadedQuery } from "react-relay";
import { LoaderFunction, LoaderFunctionArgs, useLoaderData } from "react-router";
import { OperationType } from "relay-runtime";
import { type ComponentType } from "react";
import type { EnvironmentProviderOptions, PreloadedQuery } from "react-relay";
import { type LoaderFunction, type LoaderFunctionArgs, useLoaderData } from "react-router";
import { type OperationType } from "relay-runtime";
import { useCleanup } from "@probo/hooks";
export function withQueryRef<