mirror of
https://github.com/sigmasternchen/threadule
synced 2025-03-15 08:09:01 +00:00
feat: set default schedule time for new thread in the future
This commit is contained in:
parent
1eedd5e609
commit
10e012aacb
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ export type AccountCardProps = {
|
|||
}
|
||||
|
||||
const emptyThread = (account: Account): Thread => ({
|
||||
scheduled_for: new Date(),
|
||||
scheduled_for: new Date(new Date().getTime() + 24 * 60 * 60 * 1000),
|
||||
status: ThreadStatus.SCHEDULED,
|
||||
account: {
|
||||
id: account.id
|
||||
|
|
Loading…
Reference in a new issue