diff --git a/scripts/App.svelte b/scripts/App.svelte index ac998f7..aa85337 100644 --- a/scripts/App.svelte +++ b/scripts/App.svelte @@ -10,9 +10,9 @@ /** @type {File} */ $: file = files && files[0] - $: console.log('file', file) $: tableRawContent = file && getTableRawContentFromFile(file) $: tableObjectSheets = tableRawContent && tableRawContent.then(tableRawContentToObjects) || [] + $: Promise.resolve(tableObjectSheets).then(x => console.log('tableObjectSheets', x))