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

Commit bf4e5bf

Browse files
committed
0.5.98
1 parent 45d7c60 commit bf4e5bf

File tree

2 files changed

+3
-17
lines changed

2 files changed

+3
-17
lines changed

Diff for: lib/cli/src/version.ts

+1-1
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.97";
2+
export const VERSION = "0.5.98";
33

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

Diff for: lib/components/head.tsx

+2-16
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,6 @@ export const Head = (props: HeadProps) => {
2323
return (
2424
<_Head>
2525
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
26-
<Meta
27-
title={props.title}
28-
description={props.description}
29-
favicon={props.favicon}
30-
image={props.image}
31-
href={props.href}
32-
/>
33-
{props.children}
34-
</_Head>
35-
);
36-
};
37-
38-
export const Meta = (props: HeadProps) => {
39-
return (
40-
<>
4126
{/* HTML Meta Tags */}
4227
<title>{props.title} | Netzo</title>
4328
<meta name="description" content={props.description} />
@@ -63,6 +48,7 @@ export const Meta = (props: HeadProps) => {
6348
<meta name="twitter:title" content={props.title} />
6449
<meta name="twitter:description" content={props.description} />
6550
<meta name="twitter:image" content={props.image} />
66-
</>
51+
{props.children}
52+
</_Head>
6753
);
6854
};

0 commit comments

Comments
 (0)