From 5892c53ed39a4cd944ddd518d786574ba5d2ab4d Mon Sep 17 00:00:00 2001 From: Evan Ugarte <36345325+evanugarte@users.noreply.github.com> Date: Sat, 28 Jun 2025 18:31:03 -0700 Subject: [PATCH] Remove 1 exclamation in 2DPrinting.js --- src/APIFunctions/2DPrinting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/APIFunctions/2DPrinting.js b/src/APIFunctions/2DPrinting.js index bb4ee3466..ace81e073 100644 --- a/src/APIFunctions/2DPrinting.js +++ b/src/APIFunctions/2DPrinting.js @@ -23,7 +23,7 @@ export async function healthCheck() { const url = new URL('/api/Printer/healthCheck', BASE_API_URL); try { const res = await fetch(url.href); - status.error = !!res.ok; + status.error = !res.ok; } catch (err) { status.responseData = err; status.error = true;