Skip to content

Commit

Permalink
Merge branch 'padms/2701' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
padms committed Jan 3, 2025
2 parents 4e38386 + 376a067 commit 3436459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/sections/AnchorLinkList/AnchorLinkList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const AnchorLinkList = forwardRef<HTMLElement, AnchorLinkListProps>(function Anc
{anchorList?.map((anchorLink: { id: string; title?: string; anchorReference?: string }) => {
const anchor = anchorLink?.anchorReference ? `#${anchorLink?.anchorReference}` : ''
return (
<li key={`anchor_link_${anchorLink?.id}`} className="w-full flex justify-center">
<li key={`anchor_link_${anchorLink?.id}`} className="w-full flex justify-start">
<ButtonLink variant="ghost" href={anchor} className="w-max text-moss-green-100">
{anchorLink?.title}
</ButtonLink>
Expand Down

0 comments on commit 3436459

Please sign in to comment.