@setoelkahfi / svara / commits / 7a9658e

removed unneeded code

mellbacon committed Jan 20, 2023 at 12:32 UTC 7a9658e6d2f8c7b5afe34e2c095b5949ebc34b38
1 file changed +1 -2
src/components/Footer/Footer.svelte
+1 -2
@@ -9,7 +9,6 @@
9 import { file_language, file_linefeed, line_info } from "../Editor/scripts/Editor";
10 import Notifications from "../Notifications/Notifications.svelte";
11 import { unreadnotifications } from "../Notifications/Notifications";
12 - import InternalTerminal from "../Terminal/InternalTerminal.svelte";
12
13 let langs = [];
14 for (let l of languages) {
@@ -19,7 +18,7 @@
18 let showlangs = false;
19 const tools = [
20 {name: "Notifications", content: Notifications, icon: Notification, action: (t) => {togglePanel(t)}},
22 - {name: "Terminal", content: InternalTerminal, icon: Terminal, action: spawnTerminal}
21 + {name: "Terminal", content: null, icon: Terminal, action: spawnTerminal}
22 ]
23
24 async function spawnTerminal() {