chore(frontend): clean remaining templates and configs

This commit is contained in:
Matthieu
2025-09-19 08:19:45 +02:00
parent 32dd8fab58
commit b0c3b2b646
7 changed files with 274 additions and 627 deletions

View File

@@ -31,9 +31,7 @@
@click="selectProfile(profile.id)"
>
<span>{{ profile.firstName }} {{ profile.lastName }}</span>
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
<IconLucideChevronRight class="w-4 h-4" aria-hidden="true" />
</button>
</div>
<p v-else class="text-sm text-base-content/60">Aucun profil enregistré.</p>
@@ -59,6 +57,7 @@ import { onMounted } from 'vue'
import { useRouter } from 'vue-router'
import { useProfiles } from '#imports'
import { useProfileSession } from '#imports'
import IconLucideChevronRight from '~icons/lucide/chevron-right'
const router = useRouter()
const { profiles, loadingProfiles, fetchProfiles } = useProfiles()