Remove notifications from left navigation menu (#767)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov 2022-01-06 14:07:08 +03:00 committed by GitHub
parent 0ebe8c9ed4
commit c41db4b903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,6 @@
<div class="flex-col">
{#each apps as app}
<AppItem selected={app._id === active} icon={app.icon} label={app.label} notify action={async () => {navigateApp(app._id)}}/>
<AppItem selected={app._id === active} icon={app.icon} label={app.label} action={async () => {navigateApp(app._id)}}/>
{/each}
</div>