Skip to content

Commit 098259d

Browse files
committed
fix quotes for consistency in templates
Signed-off-by: Karthik Ganeshram <[email protected]>
1 parent bd81b97 commit 098259d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/http-js/content/src/index.js.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{%- case http-router -%}
22
{% when "hono" %}// For Hono documentation refer to https://hono.dev/docs/
33
import { Hono } from 'hono';
4-
import { fire } from "hono/service-worker";
4+
import { fire } from 'hono/service-worker';
55
import { logger } from 'hono/logger';
66

77
let app = new Hono();

templates/http-ts/content/src/index.ts.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{%- case http-router -%}
22
{% when "hono" %}// For Hono documentation refer to https://hono.dev/docs/
33
import { Hono } from 'hono';
4-
import { fire } from "hono/service-worker";
4+
import { fire } from 'hono/service-worker';
55
import type { Context, Next } from 'hono';
66
import { logger } from 'hono/logger';
77

0 commit comments

Comments
 (0)