Skip to content

Commit 51622b7

Browse files
committed
simplified href
1 parent bff9a0a commit 51622b7

File tree

1 file changed

+1
-1
lines changed
  • src/components/CardAboutShelter/components/InfoRow

1 file changed

+1
-1
lines changed

src/components/CardAboutShelter/components/InfoRow/InfoRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const InfoRow = React.forwardRef<HTMLDivElement, IInfoRowProps>(
99
const ValueComp = !value ? (
1010
<Fragment />
1111
) : isLink ? (
12-
<a href={`${value}`} target='_blank'
12+
<a href={value} target='_blank'
1313
className="text-blue-500 break-all cursor-pointer hover:underline"
1414
>
1515
{value}

0 commit comments

Comments
 (0)