From 81e2c88a2a9dff5c2216780e40117b4e727f5f4e Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Sat, 7 Feb 2026 06:13:00 +0100 Subject: [PATCH] fix: use any[] for externalPlugins type --- src/components/Graph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Graph.tsx b/src/components/Graph.tsx index f1f1fbf..ac3add9 100644 --- a/src/components/Graph.tsx +++ b/src/components/Graph.tsx @@ -17,7 +17,7 @@ type GlobalConfiguration = { type QuartzConfig = { configuration: GlobalConfiguration; plugins: any; - externalPlugins?: string[]; + externalPlugins?: any[]; }; type QuartzPluginData = {