Skip to content

Commit c833402

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 e912769 commit c833402

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
@@ -88,7 +88,10 @@ function AppInner() {
8888
}, [setSidebarCollapsed]);
8989

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

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

0 commit comments

Comments
 (0)