chore: remove unused code

This commit is contained in:
liyasthomas
2021-06-15 06:34:21 +05:30
parent b357dc8e2f
commit 0cedc9ed51
27 changed files with 5 additions and 328 deletions

View File

@@ -1,30 +0,0 @@
<template>
<AppSection ref="sync" :label="$t('notes')" no-legend>
<div v-if="currentUser">
<FirebaseInputform />
<FirebaseFeeds />
</div>
<div v-else>
<p class="info">{{ $t("login_first") }}</p>
<FirebaseLogin @show-email="showEmail = true" />
</div>
<FirebaseEmail :show="showEmail" @hide-modal="showEmail = false" />
</AppSection>
</template>
<script>
import { currentUser$ } from "~/helpers/fb/auth"
export default {
subscriptions() {
return {
currentUser: currentUser$,
}
},
data() {
return {
showEmail: false,
}
},
}
</script>