aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/BlockLink.tsx
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2022-11-18 18:00:52 -0500
committerKevin J Hoerr <kjhoerr@protonmail.com>2022-11-18 18:00:52 -0500
commitdbb497eef6b66b09cf000ed3794eea7f517b840a (patch)
treeb3303cf9d864533fc1a8c7616ea5ca38bc4d41f0 /src/components/BlockLink.tsx
parent299159ab2b4b1488cfc99e38c921e35d61a1264a (diff)
downloadsubmelon.dev-dbb497eef6b66b09cf000ed3794eea7f517b840a.tar.gz
submelon.dev-dbb497eef6b66b09cf000ed3794eea7f517b840a.tar.bz2
submelon.dev-dbb497eef6b66b09cf000ed3794eea7f517b840a.zip
Switch tense of BlockBody prop
Diffstat (limited to 'src/components/BlockLink.tsx')
-rw-r--r--src/components/BlockLink.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/BlockLink.tsx b/src/components/BlockLink.tsx
index 3144c86..f2724e7 100644
--- a/src/components/BlockLink.tsx
+++ b/src/components/BlockLink.tsx
@@ -3,7 +3,7 @@ import { BlockAnchor, BlockBody } from "../styles";
const BlockLink = ({ children, ...attributes }) => {
return (
- <BlockBody>
+ <BlockBody theme={{ link: true }}>
<BlockAnchor {...attributes}>{children}</BlockAnchor>
</BlockBody>
);