From e6cc7db3c1a3788ed55b41229b0db7306000fe6c Mon Sep 17 00:00:00 2001 From: _00_ <131402327+rgaricano@users.noreply.github.com> Date: Sat, 4 Oct 2025 14:45:49 +0200 Subject: [PATCH] Fix Code Format --- src/lib/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils/index.ts b/src/lib/utils/index.ts index 7d05c34135..856f7fa028 100644 --- a/src/lib/utils/index.ts +++ b/src/lib/utils/index.ts @@ -1624,7 +1624,7 @@ export const renderVegaVisualization = async (spec: string, i18n?: any) => { throw new Error(errorMsg); } const runtime = vega.parse(vegaSpec); - const view = new vega.View(runtime, {renderer: 'none'}); + const view = new vega.View(runtime, { renderer: 'none' }); const svg = await view.toSVG(); return svg; } catch (error) {