From cac956b88da655dd9571c9033d81f747e81a896b Mon Sep 17 00:00:00 2001 From: ekzyis Date: Wed, 18 Oct 2023 16:50:33 +0200 Subject: [PATCH] Fix typo --- components/text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/text.js b/components/text.js index 3b0e87c2..86738395 100644 --- a/components/text.js +++ b/components/text.js @@ -126,7 +126,7 @@ export default memo(function Text ({ nofollow, imgproxyUrls, children, tab, ...o } // If [text](url) was parsed as and text is not empty and not a link itself, - // we don't render it as an image since it was probably a concious choice to include text. + // we don't render it as an image since it was probably a conscious choice to include text. const text = children[0] if (!!text && !/^https?:\/\//.test(text)) { return {text}