Compare commits

..

1 Commits

Author SHA1 Message Date
Matheus Manuel
10551ba1ac
Merge cb7b166e0c into 244744488f 2024-09-05 13:07:07 +02:00
3 changed files with 8 additions and 7 deletions

View File

@ -113,7 +113,6 @@
description: `${error ?? ''}`,
duration: 5000
});
isLoading = false;
return;
}

View File

@ -102,11 +102,7 @@
<div class="flex items-center space-x-1 justify-center">
{#if Array.isArray(svgInfo.category)}
{#each svgInfo.category.slice(0, maxVisibleCategories) as c, index}
<a
href={`/directory/${c.toLowerCase()}`}
class={badgeStyles}
title={`This icon is part of the ${svgInfo.category} category`}>{c}</a
>
<a href={`/directory/${c.toLowerCase()}`} class={badgeStyles}>{c}</a>
{/each}
{#if svgInfo.category.length > maxVisibleCategories}

View File

@ -2028,7 +2028,7 @@ export const svgs: iSVG[] = [
},
{
title: 'Stripe',
category: ['Software', 'Payment'],
category: 'Software',
route: '/library/stripe.svg',
url: 'https://stripe.com/'
},
@ -2526,6 +2526,12 @@ export const svgs: iSVG[] = [
},
url: 'https://www.markdownguide.org/'
},
{
title: 'Movie Web',
category: 'Entertainment',
route: '/library/movie-web.svg',
url: 'https://movie-web.app/'
},
{
title: 'Radix UI',
category: 'Library',