all: fix formatting
diff --git a/webui/src/web-components/sketch-call-status.test.ts b/webui/src/web-components/sketch-call-status.test.ts
index 6cc290e..88ae3bd 100644
--- a/webui/src/web-components/sketch-call-status.test.ts
+++ b/webui/src/web-components/sketch-call-status.test.ts
@@ -32,7 +32,7 @@
// Check that LLM indicator is active
await expect(component.locator(".llm-indicator")).toHaveClass(/active/);
-
+
// Check that LLM indicator has the correct background and color
await expect(component.locator(".llm-indicator.active")).toBeVisible();
@@ -50,7 +50,7 @@
// Check that tool indicator is active
await expect(component.locator(".tool-indicator")).toHaveClass(/active/);
-
+
// Check that tool indicator has the correct background and color
await expect(component.locator(".tool-indicator.active")).toBeVisible();
@@ -71,7 +71,7 @@
// Check that both indicators are active
await expect(component.locator(".llm-indicator")).toHaveClass(/active/);
await expect(component.locator(".tool-indicator")).toHaveClass(/active/);
-
+
// Check that both active indicators are visible with their respective styles
await expect(component.locator(".llm-indicator.active")).toBeVisible();
await expect(component.locator(".tool-indicator.active")).toBeVisible();