removed settings page

This commit is contained in:
Michael Shanks 2019-09-30 05:20:21 +01:00
parent fb8568c0fd
commit 13f6b48f83
1 changed files with 9 additions and 8 deletions

View File

@ -18,30 +18,31 @@
<h1>loading</h1> <h1>loading</h1>
{:then result} {:then result}
{#if $store.showSettings}
<Settings /> {#if $store.hasAppPackage}
<PackageRoot />
{:else} {:else}
{#if $store.hasAppPackage}
<PackageRoot />
{:else} <NoPackage />
<NoPackage />
{/if}
{/if} {/if}
{:catch err} {:catch err}
<h1 style="color:red">{err}</h1> <h1 style="color:red">{err}</h1>
{/await} {/await}
<!--
<div class="settings"> <div class="settings">
<IconButton icon="settings" <IconButton icon="settings"
on:click={store.showSettings}/> on:click={store.showSettings}/>
</div> </div>
{#if $store.useAnalytics} {#if $store.useAnalytics}
<iframe src="https://marblekirby.github.io/bb-analytics.html" width="0" height="0" style="visibility:hidden;display:none"/> <iframe src="https://marblekirby.github.io/bb-analytics.html" width="0" height="0" style="visibility:hidden;display:none"/>
{/if} {/if}
-->
</main> </main>
<style> <style>