From b5eec292e024cbf2a81f0462e4f23cd84a196f62 Mon Sep 17 00:00:00 2001 From: divocat Date: Thu, 23 Oct 2025 12:22:04 +0300 Subject: [PATCH] fix: correct nft checks output --- .../src/podkop/tabs/diagnostic/checks/runNftCheck.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fe-app-podkop/src/podkop/tabs/diagnostic/checks/runNftCheck.ts b/fe-app-podkop/src/podkop/tabs/diagnostic/checks/runNftCheck.ts index 46c46a1..5f413c9 100644 --- a/fe-app-podkop/src/podkop/tabs/diagnostic/checks/runNftCheck.ts +++ b/fe-app-podkop/src/podkop/tabs/diagnostic/checks/runNftCheck.ts @@ -42,7 +42,7 @@ export async function runNftCheck() { Boolean(data.rules_mangle_output_counters) && Boolean(data.rules_proxy_exist) && Boolean(data.rules_proxy_counters) && - Boolean(data.rules_other_mark_exist); + !data.rules_other_mark_exist; const atLeastOneGood = Boolean(data.table_exist) || @@ -52,7 +52,7 @@ export async function runNftCheck() { Boolean(data.rules_mangle_output_counters) || Boolean(data.rules_proxy_exist) || Boolean(data.rules_proxy_counters) || - Boolean(data.rules_other_mark_exist); + !data.rules_other_mark_exist; function getStatus() { if (allGood) {