Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
cstrnt committed Jan 20, 2024
1 parent 81d4499 commit 7a226c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/api/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { makeConfigRoute } from "api/routes/v1_config";
import { projectDataRoute } from "api/routes/v1_project_data";
import { makeProjectDataRoute } from "api/routes/v1_project_data";
import { Hono } from "hono";
import { cors } from "hono/cors";
import { logger } from "hono/logger";
Expand All @@ -18,5 +18,5 @@ export const app = new Hono()
.route("/dashboard", makeLegacyProjectDataRoute())
// v1 routes
.route("/v1/config", makeConfigRoute())
.route("/v1/data", projectDataRoute)
.route("/v1/data", makeProjectDataRoute())
.route("/v1/track", makeEventRoute());

1 comment on commit 7a226c7

@vercel
Copy link

@vercel vercel bot commented on 7a226c7 Jan 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.