From 7274f4954a643f4b7ca2d3d9d068cf98ada282fc Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Wed, 18 Sep 2024 14:08:31 +0200 Subject: [PATCH] fix: connect sdk description bg color (#8171) --- 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 256a744650..7e905663f7 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,