From 25014c3afdf2924a07cfaf58b07128e7b29d9b3f Mon Sep 17 00:00:00 2001 From: choba Date: Wed, 10 Jan 2024 18:57:18 +0100 Subject: [PATCH] Add. color palette refactoring --- src/pages/auth/signup/CheckTermsAndConditions.tsx | 3 ++- src/pages/auth/signup/SignUp.tsx | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pages/auth/signup/CheckTermsAndConditions.tsx b/src/pages/auth/signup/CheckTermsAndConditions.tsx index 7ed2b9b..c8888fe 100644 --- a/src/pages/auth/signup/CheckTermsAndConditions.tsx +++ b/src/pages/auth/signup/CheckTermsAndConditions.tsx @@ -1,4 +1,5 @@ import { stepButtonProps, stepInstruction } from '@/store/common'; +import { theme } from '@/styles'; import { Box, Checkbox, @@ -126,7 +127,7 @@ const CheckTermsAndConditions = (props: any) => { { const currentStepIndex = useRecoilValue(stepIndex); @@ -36,6 +37,7 @@ const SignUp = () => { const LinearProgressWithLabel = ( props: LinearProgressProps & { value: number }, ) => { + console.log(theme.palette) return ( @@ -55,7 +57,7 @@ const SignUp = () => {