From 14d7b882e351ec7dfb4d3c5a48b739fe269dd7ff Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sun, 21 Aug 2022 23:27:49 +0900 Subject: [PATCH] chore: fix typo in Carbon/index.tsx bellow -> below --- website/src/components/Carbon/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/components/Carbon/index.tsx b/website/src/components/Carbon/index.tsx index 9d150a60..c23e10d3 100644 --- a/website/src/components/Carbon/index.tsx +++ b/website/src/components/Carbon/index.tsx @@ -17,7 +17,7 @@ export default function Carbon({ const s = document.createElement('script'); s.id = '_carbonads_js'; s.src = `//cdn.carbonads.com/carbon.js?serve=${code}&placement=${placement}`; - // Add a container bellow h1 to avoid layout shift + // Add a container below h1 to avoid layout shift const mountContainer = document.createElement('div'); mountContainer.setAttribute('style', customStyle); insertAfter(targetElement, mountContainer);