Tests
All checks were successful
Lint / lint (push) Successful in 16s

This commit is contained in:
Julien Valverdé
2025-03-14 22:07:53 +01:00
parent 2e8dfbc988
commit 70b6c4434e
2 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
import { FetchHttpClient } from "@effect/platform"
import { Clipboard, Geolocation, Permissions } from "@effect/platform-browser"
import { QueryClient } from "@reffuse/extension-query"
import { createRouter, RouterProvider } from "@tanstack/react-router"
import { Layer } from "effect"
import { StrictMode } from "react"
@@ -14,6 +15,7 @@ const layer = Layer.empty.pipe(
Layer.provideMerge(Geolocation.layer),
Layer.provideMerge(Permissions.layer),
Layer.provideMerge(FetchHttpClient.layer),
Layer.provideMerge(QueryClient.layer()),
)
const router = createRouter({ routeTree })