Skip to content

Commit

Permalink
Fixed the settings text data proble
Browse files Browse the repository at this point in the history
  • Loading branch information
nomandhoni-cs committed Nov 19, 2024
1 parent 87dfbf4 commit 84bce2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/window/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const Settings = () => {
id="reminder-text"
placeholder="Look 20 feet away to protect your eyes."
value={reminderText}
onChange={(e) => setReminderText(e.target.value.trim())} // Trim extra spaces
onChange={(e) => setReminderText(e.target.value)} // Trim extra spaces
/>
</div>
<div className="flex space-x-4">
Expand Down

0 comments on commit 84bce2b

Please sign in to comment.