8000 default to daily updates · githubocto/flat-editor@7b39452 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7b39452

Browse files
author
Amelia Wattenbeger
committed
default to daily updates
1 parent cd4a8dc commit 7b39452

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/webviews/src/settings/CronChooser.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const defaultSchedules = {
1414
}
1515

1616
const CronChooser: FunctionComponent<CronChooserProps> = props => {
17-
const [customCron, setCustomCron] = React.useState('*/5 * * * *')
17+
const [customCron, setCustomCron] = React.useState('0 0 * * *')
1818
const [showCustom, setShowCustom] = React.useState(false)
1919
const [cronFeedback, setCronFeedback] = React.useState<string | Error>('')
2020

src/webviews/src/store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const useFlatConfigStore = create<FlatStoreState>(
4040
},
4141
schedule: [
4242
{
43-
cron: '0 * * * *',
43+
cron: '0 0 * * *',
4444
},
4545
],
4646
},

0 commit comments

Comments
 (0)
0