lint and sw fixes

This commit is contained in:
Henry Jameson 2026-06-30 04:02:13 +03:00
commit 97fdee5c9d
7 changed files with 14 additions and 9 deletions

View file

@ -1,9 +1,8 @@
import { defineAsyncComponent } from 'vue'
import { mapState } from 'vuex'
import AuthForm from 'src/components/auth_form/auth_form.js'
import PostStatusForm from 'src/components/post_status_form/post_status_form.vue'
import UserCard from 'src/components/user_card/user_card.vue'
import AuthForm from 'src/components/auth_form/auth_form.js'
const UserPanel = {
computed: {
@ -15,6 +14,7 @@ const UserPanel = {
components: {
PostStatusForm,
UserCard,
AuthForm,
},
}

View file

@ -11,7 +11,7 @@
/>
<PostStatusForm />
</div>
<auth-form
<AuthForm
v-else
key="user-panel"
/>