Skip to content
This repository was archived by the owner on Sep 22, 2024. It is now read-only.

Commit af8d07c

Browse files
committed
0.5.96
1 parent e0e5ba1 commit af8d07c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/cli/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// latest version of netzo/cli (see https://github.com/netzo/netzo/releases)
2-
export const VERSION = "0.5.95";
2+
export const VERSION = "0.5.96";
33

44
// minimum version of Deno required to run this CLI
55
// (see https://github.com/denoland/deployctl/blob/main/src/version.ts)

lib/components/head.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// @deno-types="npm:@types/[email protected]"
22
import * as React from "react";
33

4+
import { Head as _Head } from "$fresh/runtime.ts";
45
import type { ComponentChildren } from "preact";
56

67
export type HeadProps = {
@@ -20,7 +21,7 @@ export type HeadProps = {
2021

2122
export const Head = (props: HeadProps) => {
2223
return (
23-
<>
24+
<_Head>
2425
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2526
<Meta
2627
title={props.title}
@@ -30,7 +31,7 @@ export const Head = (props: HeadProps) => {
3031
href={props.href}
3132
/>
3233
{props.children}
33-
</>
34+
</_Head>
3435
);
3536
};
3637

0 commit comments

Comments
 (0)