-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ui update, add debug panel #100
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ after state consolidation
const newTime = `${timePicker.getHours()}:${timePicker.getMinutes()}`; | ||
await setConfig({ time: newTime }); | ||
await scheduleNextDailyRun({ tomorrow: true }); | ||
_setLocalConfig(getDailyConfig()); // force update, scheduleNextDailyRun runs saveDailyConfig |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem ideal but I'm not sure what a better method would be.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Running into some type errors up the chain
adding Promise<DailyConfig>
to scheduleNextDailyRun
and getDailyConfig
still left getExtensionApi().settings.set
returning void
, so left it as is
No description provided.