Skip to content

Commit

Permalink
fix: button color during onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
oreHGA committed Nov 6, 2024
1 parent f08154c commit 5270b60
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/components/modals/onboarding-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,12 @@ const DataHandlingModal: React.FC<DataHandlingModalProps> = ({ onPrevious, onGet
</ul>
</DialogDescription>
<div className="flex justify-end mt-4">
<Button onClick={onPrevious}>Previous</Button>
<Button intent="dark" onClick={onGetStarted} className="ml-2">
<Button intent="primary" onClick={onGetStarted} className="ml-2">
Get Started
</Button>
<Button intent="dark" onClick={onPrevious}>
Previous
</Button>
</div>
</DialogContent>
</Dialog>
Expand Down

0 comments on commit 5270b60

Please sign in to comment.