Skip to content

Commit

Permalink
fix: set Monday as default starting day in a week
Browse files Browse the repository at this point in the history
  • Loading branch information
e-zz committed Mar 16, 2024
1 parent d48900e commit 3d61f97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const GeneralSettingsForm = () => {
<Select
placeholder="Select Start of Week"
className="w-[300px]"
value={settings.general?.startOfWeek}
value={settings.general?.startOfWeek || '1'}
onChange={(e) => onChange('general.startOfWeek', e)}
options={[
{ label: 'Sun', value: '0' },
Expand Down

0 comments on commit 3d61f97

Please sign in to comment.