diff --git a/lib/cli/src/version.ts b/lib/cli/src/version.ts
index 67e73339..1604e641 100644
--- a/lib/cli/src/version.ts
+++ b/lib/cli/src/version.ts
@@ -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)
diff --git a/lib/components/head.tsx b/lib/components/head.tsx
index 76f26547..ad45eeca 100644
--- a/lib/components/head.tsx
+++ b/lib/components/head.tsx
@@ -1,7 +1,6 @@
// @deno-types="npm:@types/react@18.2.60"
import * as React from "react";
-import { Head as _Head } from "fresh/runtime.ts";
import type { ComponentChildren } from "preact";
export type HeadProps = {
@@ -21,7 +20,7 @@ export type HeadProps = {
export const Head = (props: HeadProps) => {
return (
- <_Head>
+ <>
{
href={props.href}
/>
{props.children}
-
+ >
);
};