From c5983866ec4d2efdc31e601af15c1f7a3d77d5fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Sun, 28 Apr 2024 23:58:56 +0200 Subject: [PATCH] Remove redundant options prop from Graph component --- src/components/Graph.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Graph.astro b/src/components/Graph.astro index c48bc83..d7fe0b2 100644 --- a/src/components/Graph.astro +++ b/src/components/Graph.astro @@ -1,5 +1,5 @@ --- -import type { Node, Edge, Options } from 'vis-network/esnext'; +import type { Node, Edge } from 'vis-network/esnext'; interface Props { nodes: Node[];