Skip to content

Commit

Permalink
Fix bad imports
Browse files Browse the repository at this point in the history
  • Loading branch information
delbaoliveira committed Mar 13, 2024
1 parent a5171c6 commit 12fb2e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions app/(public)/signup/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Link from "next/link"
import { SignupForm } from "@/app/(marketing)/signup/form"

import { SignupForm } from "@/app/(public)/signup/form"
export default function Page() {
return (
<div className="flex items-center w-1/4 px-4 sm:px-6 lg:px-8">
Expand Down
2 changes: 1 addition & 1 deletion drizzle.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import " @/drizzle/envConfig"
import "@/drizzle/envConfig"
import { defineConfig } from "drizzle-kit"

export default defineConfig({
Expand Down
2 changes: 1 addition & 1 deletion drizzle/db.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import " @/drizzle/envConfig"
import "@/drizzle/envConfig"
import { drizzle } from "drizzle-orm/vercel-postgres"
import { sql } from "@vercel/postgres"
import { users, NewUser } from "./schema"
Expand Down

0 comments on commit 12fb2e8

Please sign in to comment.