Skip to content

Commit

Permalink
chore: auto fix by lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yossydev committed Feb 25, 2024
1 parent 5ddc3c9 commit 5b97a1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/routes/_renderer.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Style } from "hono/css";
import { type FC } from "hono/jsx";
import { jsxRenderer } from "hono/jsx-renderer";
import { Script } from "honox/server";
import { LINK } from "../constants";
import { type FC } from "hono/jsx";

export default jsxRenderer(({ children, title }) => {
return (
Expand Down
2 changes: 1 addition & 1 deletion app/routes/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { FC } from "hono/jsx";
import { createRoute } from "honox/factory";
import Counter from "../islands/counter";
import { FC } from "hono/jsx";

export default createRoute((c) => {
const name = c.req.query("name") ?? "Hono";
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"deploy": "$npm_execpath run build && wrangler pages deploy ./dist",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome check --apply .",
"check": "biome check --apply .",
"typecheck": "tsc -p . --noEmit"
},
Expand Down

0 comments on commit 5b97a1e

Please sign in to comment.