From 3551bc90cd5d7cd0c061445896a8db26b5f46873 Mon Sep 17 00:00:00 2001 From: hamster1963 <1410514192@qq.com> Date: Thu, 21 Nov 2024 10:25:37 +0800 Subject: [PATCH 1/2] fix: build error --- app/(main)/ClientComponents/ServerListClient.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/(main)/ClientComponents/ServerListClient.tsx b/app/(main)/ClientComponents/ServerListClient.tsx index f5124db..5a2f50a 100644 --- a/app/(main)/ClientComponents/ServerListClient.tsx +++ b/app/(main)/ClientComponents/ServerListClient.tsx @@ -14,8 +14,8 @@ import { useEffect, useRef, useState } from "react"; import useSWR from "swr"; export default function ServerListClient() { - const { status, setStatus } = useStatus(); - const { filter, setFilter } = useFilter(); + const { status } = useStatus(); + const { filter } = useFilter(); const t = useTranslations("ServerListClient"); const containerRef = useRef(null); const defaultTag = "defaultTag"; From 6a0367c1928354acaa1f7c0f99995a6dda01c540 Mon Sep 17 00:00:00 2001 From: hamster1963 <1410514192@qq.com> Date: Thu, 21 Nov 2024 10:26:06 +0800 Subject: [PATCH 2/2] update: v1.4.4-fix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 74dc883..c783c63 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nezha-dash", - "version": "1.4.4", + "version": "1.4.4-fix", "private": true, "scripts": { "dev": "next dev -p 3040",