diff --git a/components/Error.tsx b/components/Error.tsx index 0d280d2..16b8f2d 100644 --- a/components/Error.tsx +++ b/components/Error.tsx @@ -7,13 +7,6 @@ export default function Error({ error }: { error: string }) {

Unable to Load

-

{error}

- ); } diff --git a/components/ServerInfo.tsx b/components/ServerInfo.tsx index 99e55c5..5ee58e0 100644 --- a/components/ServerInfo.tsx +++ b/components/ServerInfo.tsx @@ -4,13 +4,13 @@ import { MapPinIcon, GlobeAltIcon, BuildingOfficeIcon, - CpuChipIcon, ClipboardDocumentIcon, CheckIcon, - ArrowTopRightOnSquareIcon + CpuChipIcon } from '@heroicons/react/24/outline'; import type { HostInfo } from '@/utils/types'; import { browser } from 'wxt/browser'; +import Error from './Error'; const CopyButton = ({ text }: { text: string }) => { const [copied, setCopied] = useState(false); @@ -26,7 +26,7 @@ const CopyButton = ({ text }: { text: string }) => { return (