Skip to content

Commit

Permalink
Use href instead of url to standardize naming.
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Sep 4, 2024
1 parent e615f37 commit 3d69111
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions dapp/src/pages/DashboardPage/UsefulLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ export default function UsefulLinks() {
return (
<VStack>
{[
{ label: "Documentation", url: EXTERNAL_HREF.DOCS },
{ label: "Blog", url: EXTERNAL_HREF.BLOG },
{ label: "FAQ", url: EXTERNAL_HREF.FAQ },
].map(({ label, url }) => (
{ label: "Documentation", href: EXTERNAL_HREF.DOCS },
{ label: "Blog", href: EXTERNAL_HREF.BLOG },
{ label: "FAQ", href: EXTERNAL_HREF.FAQ },
].map(({ label, href }) => (
<ButtonLink
key={url}
href={url}
key={href}
href={href}
isExternal
w="100%"
variant="card"
Expand Down

0 comments on commit 3d69111

Please sign in to comment.