fix: Fix imports and database bugs. Removed legacy ETL code.
This commit is contained in:
@@ -80,7 +80,7 @@ export const OnboardingPage: React.FC = () => {
|
||||
className={`w-10 h-10 rounded-full flex items-center justify-center font-semibold transition-all ${
|
||||
stepNumbers[currentStep] >= stepNumbers[step]
|
||||
? 'bg-primary-600 text-white dark:bg-primary-700 dark:text-white'
|
||||
: 'bg-gray-200 text-gray-500 dark:bg-gray-700 dark:text-gray-400'
|
||||
: 'bg-gray-200 text-gray-500 dark:bg-inactive dark:text-gray-400'
|
||||
}`}
|
||||
>
|
||||
{stepNumbers[step]}
|
||||
@@ -102,7 +102,7 @@ export const OnboardingPage: React.FC = () => {
|
||||
className={`flex-1 h-1 mx-2 rounded transition-all ${
|
||||
stepNumbers[currentStep] > stepNumbers[step]
|
||||
? 'bg-primary-600 dark:bg-primary-700'
|
||||
: 'bg-gray-200 dark:bg-gray-700'
|
||||
: 'bg-gray-200 dark:bg-inactive'
|
||||
}`}
|
||||
/>
|
||||
)}
|
||||
@@ -115,7 +115,7 @@ export const OnboardingPage: React.FC = () => {
|
||||
</div>
|
||||
|
||||
{/* Step Content */}
|
||||
<div className="bg-white dark:bg-gray-800 rounded-2xl shadow-xl border border-slate-200 dark:border-gray-700 p-6 md:p-8">
|
||||
<div className="bg-white dark:bg-card rounded-2xl shadow-xl border border-slate-200 dark:border-border p-6 md:p-8">
|
||||
{currentStep === 'preferences' && (
|
||||
<PreferencesStep
|
||||
onNext={handleSavePreferences}
|
||||
|
||||
Reference in New Issue
Block a user