From 59a637bd741daf2ce51005104ffdee146d895d9a Mon Sep 17 00:00:00 2001 From: Daniel Adams Date: Mon, 22 Apr 2024 14:32:57 +0200 Subject: [PATCH] Remove null check, we'd rather it fails if theme is wonky --- theme/src/components/live-code.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/theme/src/components/live-code.js b/theme/src/components/live-code.js index 8062033d..a93d13f6 100644 --- a/theme/src/components/live-code.js +++ b/theme/src/components/live-code.js @@ -106,15 +106,15 @@ function LiveCode({code, language, highlight, noinline, metastring}) { onChange={handleChange} theme={githubTheme} ignoreTabKey={true} - padding={theme?.space[3]} + padding={theme.space[3]} style={{ - fontFamily: theme?.fonts.mono, + fontFamily: theme.fonts.mono, fontSize: '85%', - borderBottomLeftRadius: theme?.radii[2], - borderBottomRightRadius: theme?.radii[2], + borderBottomLeftRadius: theme.radii[2], + borderBottomRightRadius: theme.radii[2], border: '1px solid', borderTop: 0, - borderColor: theme?.colors.border.default, + borderColor: theme.colors.border.default, }} />