refact: remove crypto uuid to not block testing in non-ssl host env
This commit is contained in:
parent
6f7986a574
commit
f5181cbe6e
@ -90,9 +90,9 @@ export function ProjectCard({
|
||||
<CardContent className="mt-auto flex flex-col px-2">
|
||||
{tags?.badges && tags.badges.length > 0 && (
|
||||
<div className="mt-2 flex flex-wrap gap-1">
|
||||
{tags.badges.map((b) => (
|
||||
{tags.badges.map((b, i) => (
|
||||
<Badge
|
||||
key={crypto.randomUUID()}
|
||||
key={title + dates + b + i.toString()}
|
||||
variant="secondary"
|
||||
className={clsx(
|
||||
'px-1 py-0 text-[10px]',
|
||||
|
Loading…
x
Reference in New Issue
Block a user