loop/webui: add prettier
diff --git a/loop/webui/src/utils.ts b/loop/webui/src/utils.ts
index ff505f9..b60a0fa 100644
--- a/loop/webui/src/utils.ts
+++ b/loop/webui/src/utils.ts
@@ -42,7 +42,7 @@
for (let i = 0; i < 3; i++) {
// Generate more muted colors by using only part of the range
// and adding a base value to avoid very dark colors
- const value = ((hash >> (i * 8)) & 0xff);
+ const value = (hash >> (i * 8)) & 0xff;
const scaledValue = Math.floor(100 + (value * 100) / 255); // Range 100-200 for more muted colors
color += scaledValue.toString(16).padStart(2, "0");
}