Skip to content

Commit 08dca27

Browse files
TestThomasK33
authored andcommitted
fix: lint errors - use interface instead of type, fix escape sequence
Change-Id: I9b1b182f4dcf8e1e3e780253a21113cdb65dba81 Signed-off-by: Test <test@example.com>
1 parent ebafe3f commit 08dca27

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/browser/App.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ function AppInner() {
8787
}, [setSidebarCollapsed]);
8888

8989
// Cache of scripts available in each workspace (lazy-loaded per workspace)
90-
type ScriptSummary = { name: string; description?: string };
90+
interface ScriptSummary {
91+
name: string;
92+
description?: string;
93+
}
9194
const [scriptCache, setScriptCache] = useState<Map<string, ScriptSummary[]>>(new Map());
9295

9396
// Load scripts for current workspace when workspace is selected

0 commit comments

Comments
 (0)