From a428f00afe14f5ec132bc0b5b4d38561e33ec0c6 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Fri, 3 Jan 2025 14:11:39 +0100 Subject: [PATCH] fix(style): [WIP] User profile --- front/src/views/auth/ProfileBase.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/front/src/views/auth/ProfileBase.vue b/front/src/views/auth/ProfileBase.vue index 13ec23921..b56bcaea7 100644 --- a/front/src/views/auth/ProfileBase.vue +++ b/front/src/views/auth/ProfileBase.vue @@ -11,6 +11,9 @@ import axios from 'axios' import useErrorHandler from '~/composables/useErrorHandler' import useReport from '~/composables/moderation/useReport' +import Layout from '~/components/ui/Layout.vue' +import Link from '~/components/ui/Link.vue' + interface Events { (e: 'updated', value: Actor): void } @@ -69,9 +72,9 @@ watch(props, fetchData, { immediate: true })