Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhsuresh committed Dec 12, 2023
1 parent 776dfa7 commit d02e131
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from "next"
import { Suspense } from "react"
import { invoke } from "app/src/blitz-server"
import { invoke } from "src/app/blitz-server"
import get__ModelName__ from "../../queries/get__ModelName__"
import { Edit__ModelName__ } from "../../components/Edit__ModelName__"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Metadata } from "next"
import Link from "next/link"
import { Suspense } from "react"
import { invoke } from "app/src/blitz-server"
import { invoke } from "src/app/blitz-server"
import get__ModelName__ from "../queries/get__ModelName__"
import { __ModelName__ } from "../components/__ModelName__"

Expand Down
2 changes: 1 addition & 1 deletion packages/generator/templates/route/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useAuthenticatedBlitzContext } from "app/src/blitz-server"
import { useAuthenticatedBlitzContext } from "src/app/blitz-server"

export default async function AuthLayout({ children }: { children: React.ReactNode }) {
await useAuthenticatedBlitzContext({
Expand Down

0 comments on commit d02e131

Please sign in to comment.