From 260eda808eea3ac496a80604755727c070c17350 Mon Sep 17 00:00:00 2001 From: kwasniew Date: Wed, 18 Sep 2024 12:56:03 +0200 Subject: [PATCH] fix: connect sdk description bg color --- frontend/src/component/onboarding/GenerateApiKey.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/component/onboarding/GenerateApiKey.tsx b/frontend/src/component/onboarding/GenerateApiKey.tsx index 256a7446502b..7e905663f7ce 100644 --- a/frontend/src/component/onboarding/GenerateApiKey.tsx +++ b/frontend/src/component/onboarding/GenerateApiKey.tsx @@ -66,7 +66,7 @@ const SecretExplanation = styled('div')(({ theme }) => ({ })); const SecretExplanationDescription = styled('div')(({ theme }) => ({ - backgroundColor: theme.palette.primary.contrastText, + backgroundColor: theme.palette.background.paper, borderRadius: theme.shape.borderRadius, padding: theme.spacing(2), flex: 1,