fix: 🔒 Remove unnecessary crossorigin attributes

This commit is contained in:
Jesse Wierzbinski 2024-05-04 19:33:50 -10:00
parent cafe272429
commit e29ed01e52
No known key found for this signature in database
10 changed files with 14 additions and 15 deletions

View file

@ -2,7 +2,7 @@
<div class="flex flex-col p-10 gap-4 h-full">
<div
class="aspect-video shrink-0 w-full rounded ring-white/5 bg-dark-800 shadow overflow-hidden ring-1 hover:ring-2 duration-100">
<img crossorigin="anonymous" class="object-cover w-full h-full duration-150 hover:scale-[102%] ease-in-out"
<img class="object-cover w-full h-full duration-150 hover:scale-[102%] ease-in-out"
v-if="instance?.banner" alt="Instance banner" :src="instance.banner" />
</div>