From 56c4acc18f83ccc7849f10e728b95776a5b9cadd Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 18 Mar 2021 22:11:28 -0700 Subject: [PATCH] fix: Background on error details not correct in dark theme --- app/components/ErrorBoundary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/ErrorBoundary.js b/app/components/ErrorBoundary.js index d7b07f45..e3a077e3 100644 --- a/app/components/ErrorBoundary.js +++ b/app/components/ErrorBoundary.js @@ -107,7 +107,7 @@ class ErrorBoundary extends React.Component { } const Pre = styled.pre` - background: ${(props) => props.theme.smoke}; + background: ${(props) => props.theme.secondaryBackground}; padding: 16px; border-radius: 4px; font-size: 12px;