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

Commit

Permalink
0.5.100
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed Jun 25, 2024
1 parent 4bb2176 commit ccd4f60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// latest version of netzo/cli (see https://github.com/netzo/netzo/releases)
export const VERSION = "0.5.99";
export const VERSION = "0.5.100";

// minimum version of Deno required to run this CLI
// (see https://github.com/denoland/deployctl/blob/main/src/version.ts)
Expand Down
5 changes: 2 additions & 3 deletions lib/components/head.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// @deno-types="npm:@types/[email protected]"
import * as React from "react";

import { Head as _Head } from "fresh/runtime.ts";
import type { ComponentChildren } from "preact";

export type HeadProps = {
Expand All @@ -21,7 +20,7 @@ export type HeadProps = {

export const Head = (props: HeadProps) => {
return (
<_Head>
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<Meta
title={props.title}
Expand All @@ -31,7 +30,7 @@ export const Head = (props: HeadProps) => {
href={props.href}
/>
{props.children}
</_Head>
</>
);
};

Expand Down

0 comments on commit ccd4f60

Please sign in to comment.