From e9612d2b9ae3d47a5100d5a33c74ba53ba6dd990 Mon Sep 17 00:00:00 2001 From: NaNorNull <74334433+NaNorNull@users.noreply.github.com> Date: Fri, 27 Aug 2021 15:18:07 -0400 Subject: [PATCH] Update main.js Trivial change to remove unused prop call since it produces an error in console in Firefox. --- src/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.js b/src/main.js index d6cacbb..e836bcc 100644 --- a/src/main.js +++ b/src/main.js @@ -3,8 +3,8 @@ import App from './App.svelte'; const app = new App({ target: document.body, props: { - name: 'world' + } }); -export default app; \ No newline at end of file +export default app;