feat(SW-237): Fixed imports
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import { homeHrefs } from "@/constants/homeHrefs"
|
||||
import { env } from "@/env/server"
|
||||
import { serverClient } from "@/lib/trpc/server"
|
||||
|
||||
import { getLang } from "@/i18n/serverContext"
|
||||
|
||||
import { MainMenu } from "./MainMenu"
|
||||
|
||||
@@ -18,7 +18,6 @@ import "./commands"
|
||||
|
||||
// Alternatively you can use CommonJS syntax:
|
||||
// require('./commands')
|
||||
|
||||
import { mount } from "cypress/react18"
|
||||
|
||||
// Augment the Cypress namespace to include type definitions for
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { router } from "@/server/trpc";
|
||||
import { navigationRouter } from "./navigation";
|
||||
import { router } from "@/server/trpc"
|
||||
|
||||
import { navigationRouter } from "./navigation"
|
||||
|
||||
export const myPagesRouter = router({
|
||||
navigation: navigationRouter,
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
import superjson from "superjson"
|
||||
|
||||
export const transformer = superjson
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import type { Node } from "@/types/requests/utils/edges"
|
||||
import type { Puff } from "@/types/requests/puff"
|
||||
import type { Node } from "@/types/requests/utils/edges"
|
||||
|
||||
export type PuffsProps = {
|
||||
puffs: Node<Puff>[]
|
||||
|
||||
Reference in New Issue
Block a user