Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
boywithkeyboard committed Aug 20, 2023
1 parent da3407c commit bc79f76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function render(c: Context, Component: VNode) {
const { html, css } = extract(htmlString) // twind throws error when trying to extract if it is not installed

c.res.body = `<style>${css}</style><body>${html}</body>`
} catch (e) {
} catch (_err) {
if (c.dev) {
console.warn(
gray(
Expand Down

0 comments on commit bc79f76

Please sign in to comment.