Fix operator (#631)

This commit is contained in:
Chris 2025-12-02 21:09:30 +02:00 committed by GitHub
parent 291dc4e388
commit 376cdcd7b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -200,7 +200,7 @@ const GeneralTab: React.FC<GeneralTabProps> = ({
{t('profile.firstDayOfWeek', 'First day of week')}
</label>
<FirstDayOfWeekDropdown
value={formData.first_day_of_week || 1}
value={formData.first_day_of_week ?? 1}
onChange={onFirstDayChange}
/>
</div>