From ab10737a55d71f4586823942cda2a9c0f43b17fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8r=E2=88=82=C2=A1?= Date: Wed, 27 Nov 2024 17:34:16 +0700 Subject: [PATCH] Minor clean up --- plugins/encryption/index.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/plugins/encryption/index.tsx b/plugins/encryption/index.tsx index 8360f44..438af0e 100644 --- a/plugins/encryption/index.tsx +++ b/plugins/encryption/index.tsx @@ -1,17 +1,12 @@ import EncryptionPage from "./pages/index"; import { useUrl } from "@/hooks/useUrl"; import { NotFound } from "@/components/not-found"; -// import { Address } from "viem"; export default function PluginPage() { // Select the inner pages to display depending on the URL hash const { hash } = useUrl(); if (!hash || hash === "#/") return ; - // else if (hash.startsWith("#/delegates/")) { - // const address = hash.replace("#/delegates/", "") as Address; - // return <>; - // } // Default not found page return ;