Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ruchernchong committed Dec 23, 2024
1 parent c94799e commit 9a1c316
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/getCarsByFuelType.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import db from "@/config/db";
import { type Car, FuelType } from "@/types";
import { FuelType } from "@/types";
import { format, subMonths } from "date-fns";
import { and, asc, desc, gte, ilike, or } from "drizzle-orm";
import { cars } from "../../migrations/schema";
Expand Down
2 changes: 1 addition & 1 deletion src/v1/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getCarsByFuelType } from "@/lib/getCarsByFuelType";
import { FuelType } from "@/types";
import { Hono } from "hono";
import { bearerAuth } from "hono/dist/types/middleware/bearer-auth";
import { bearerAuth } from "hono/bearer-auth";
import { Resource } from "sst";
import cars from "./routes/cars";
import coe from "./routes/coe";
Expand Down

0 comments on commit 9a1c316

Please sign in to comment.