feat: add title attribute to edit and delete mii buttons

This commit is contained in:
trafficlunar 2025-04-25 23:04:30 +01:00
parent 953e46a042
commit e17b3908ae
3 changed files with 3 additions and 3 deletions

View file

@ -171,7 +171,7 @@ export default async function MiiPage({ params }: Props) {
</section>
<div className="flex gap-1 text-4xl justify-end text-orange-400">
<Link href={`/edit/${mii.id}`}>
<Link href={`/edit/${mii.id}`} title="Edit Mii">
<Icon icon="mdi:pencil" />
</Link>
<DeleteMiiButton miiId={mii.id} miiName={mii.name} likes={mii._count.likedBy ?? 0} />