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) {