Skip to content

Commit

Permalink
Move urls to Heading component props to remove underlines
Browse files Browse the repository at this point in the history
  • Loading branch information
dgcohen committed Oct 30, 2023
1 parent 6004229 commit 989b1a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/components/DRB/DRBContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ const DRBContainer = ({
))}
</SimpleGrid>
{totalWorks && (
<DSLink href={`${DRB_BASE_URL}/search${drbQuery}`} target="_blank">
<DSLink
href={`${DRB_BASE_URL}/search${drbQuery}`}
target="_blank"
isUnderlined={false}
>
<Text size="body2" noSpace isBold>
See {totalWorks.toLocaleString()} result
{totalWorks === 1 ? "" : "s"} from Digital Research Books Beta
Expand Down
1 change: 0 additions & 1 deletion src/components/SearchResult/SearchResult.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {
Card,
CardContent,
Link as DSLink,
CardHeading,
Box,
Text,
Expand Down

0 comments on commit 989b1a6

Please sign in to comment.