From 3616e53183b5a2306e301ccdfd85d5eaa40a7238 Mon Sep 17 00:00:00 2001 From: Guy Ben-Aharon Date: Sun, 13 Oct 2024 13:34:46 +0300 Subject: [PATCH] add default val to includeDependencies in getDiagram (#278) --- src/context/storage-context/storage-provider.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/context/storage-context/storage-provider.tsx b/src/context/storage-context/storage-provider.tsx index ea318f0f..7d52563b 100644 --- a/src/context/storage-context/storage-provider.tsx +++ b/src/context/storage-context/storage-provider.tsx @@ -235,7 +235,11 @@ export const StorageProvider: React.FC = ({ includeTables?: boolean; includeRelationships?: boolean; includeDependencies?: boolean; - } = { includeRelationships: false, includeTables: false } + } = { + includeRelationships: false, + includeTables: false, + includeDependencies: false, + } ): Promise => { const diagram = await db.diagrams.get(id);