Skip to content

Commit 267c616

Browse files
committed
chore: Remove unused destructuring
1 parent 8fb2114 commit 267c616

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/routes/edit/+page.svelte

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<script lang="ts">
22
import { dev } from '$app/environment';
33
import { base } from '$app/paths';
4-
import { env } from '$lib/util/env';
54
import Actions from '$lib/components/Actions.svelte';
65
import Card from '$lib/components/Card/Card.svelte';
76
import Editor from '$lib/components/Editor.svelte';
@@ -10,12 +9,11 @@
109
import Preset from '$lib/components/Preset.svelte';
1110
import View from '$lib/components/View.svelte';
1211
import type { DocumentationConfig, EditorMode, Tab, ValidatedState } from '$lib/types';
12+
import { env } from '$lib/util/env';
1313
import { inputStateStore, stateStore, updateCodeStore } from '$lib/util/state';
1414
import { cmdKey, initHandler, syncDiagram } from '$lib/util/util';
1515
import { onMount } from 'svelte';
1616
17-
const { isEnabledMermaidChartLinks } = env;
18-
1917
const MCBaseURL = dev ? 'http://localhost:5174' : 'https://mermaidchart.com';
2018
const docURLBase = 'https://mermaid.js.org';
2119
const docMap: DocumentationConfig = {

0 commit comments

Comments
 (0)