eslint --fix

This commit is contained in:
Oscar
2026-06-08 16:04:01 +03:00
parent b98387ea58
commit 031781a47e
15 changed files with 83 additions and 34 deletions

View File

@@ -129,7 +129,7 @@ import { useUi } from '@/composables/useUi'
const route = useRoute()
const authStore = useAuth()
const uiStore = useUi()
const chatStore = useChat()
const _chatStore = useChat()
const profileId = route.params.profileId as string
const profile = ref<UserProfile | null>(null)
@@ -173,7 +173,9 @@ const isOwnProfile = computed(() =>
authStore.profiles.some(p => p.id === profileId),
)
function goBack() { window.history.back() }
function goBack() {
window.history.back()
}
</script>
<style scoped lang="scss">