Fix checkbox outline style

The checkbox outline style was updated to prevent a black outline from appearing.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 22:54:32 +00:00
parent 5da1d76fbd
commit 78475eb990

View File

@@ -84,6 +84,7 @@ const WelcomeDialog: React.FC<WelcomeDialogProps> = ({ open, onClose }) => {
id="dont-show-again" id="dont-show-again"
checked={dontShowAgain} checked={dontShowAgain}
onCheckedChange={(checked) => setDontShowAgain(checked === true)} onCheckedChange={(checked) => setDontShowAgain(checked === true)}
className="focus:outline-none focus:ring-0 focus:ring-offset-0"
/> />
<label <label
htmlFor="dont-show-again" htmlFor="dont-show-again"