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