🎨 Format with Biome (#1097)

This commit is contained in:
Alejandra
2024-03-17 17:28:45 +01:00
committed by GitHub
parent d4ee4db2f0
commit 94a2037f8a
31 changed files with 407 additions and 391 deletions

View File

@@ -1,13 +1,13 @@
import React, { Suspense } from 'react'
import { createRootRoute, Outlet } from '@tanstack/react-router'
import { Outlet, createRootRoute } from "@tanstack/react-router"
import React, { Suspense } from "react"
import NotFound from '../components/Common/NotFound'
import NotFound from "../components/Common/NotFound"
const TanStackRouterDevtools =
process.env.NODE_ENV === 'production'
process.env.NODE_ENV === "production"
? () => null
: React.lazy(() =>
import('@tanstack/router-devtools').then((res) => ({
import("@tanstack/router-devtools").then((res) => ({
default: res.TanStackRouterDevtools,
})),
)