From 15e88c36b3202f942f8e6dac2d22c9822f1d7bc1 Mon Sep 17 00:00:00 2001 From: Kyrylo Shmidt Date: Wed, 18 Oct 2023 11:38:14 +0200 Subject: [PATCH] Fix notifications error state --- src/components/Insights/NoObservabilityCard/styles.ts | 4 ++-- src/components/Notifications/FullView/index.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Insights/NoObservabilityCard/styles.ts b/src/components/Insights/NoObservabilityCard/styles.ts index d992f2e53..3bde63462 100644 --- a/src/components/Insights/NoObservabilityCard/styles.ts +++ b/src/components/Insights/NoObservabilityCard/styles.ts @@ -17,10 +17,10 @@ export const InsightIconContainer = styled.div` background: ${({ theme }) => { switch (theme.mode) { case "light": - return "#e9eef4"; + return "#dfe1e5"; case "dark": case "dark-jetbrains": - return "#2e2e2e"; + return "#43454a"; } }}; `; diff --git a/src/components/Notifications/FullView/index.tsx b/src/components/Notifications/FullView/index.tsx index b30765e5f..acbb58e37 100644 --- a/src/components/Notifications/FullView/index.tsx +++ b/src/components/Notifications/FullView/index.tsx @@ -50,7 +50,7 @@ export const FullView = (props: FullViewProps) => { ); } - props.error ? ( + return props.error ? ( ) : (