Skip to content

Commit

Permalink
- Version Bump to 0.4.6
Browse files Browse the repository at this point in the history
- Fixed delay in login due to first sync with Caldav account.
  • Loading branch information
aa-tree committed Mar 2, 2024
1 parent 2266981 commit c0ecb28
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.4.6
- Version Bump to 0.4.6
- Fixed delay in login due to first sync with Caldav account.

v0.4.5
- Moved save button to top in TaskEditor and Event Editor.
- Fixed #138
Expand Down
4 changes: 2 additions & 2 deletions COMMITMESSAGE.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Fixed #140
- Fixed flickering of Quick Add info modal.
- Version Bump to 0.4.6
- Fixed delay in login due to first sync with Caldav account.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "manage-my-damn-life-nextjs",
"version": "0.4.5",
"version": "0.4.6",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion src/config/constants.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const VERSION_NUMBER = "0.4.5"
export const VERSION_NUMBER = "0.4.6"
/*
* SYSTEM_DEFAULT_LABEL_PREFIX: Default prefix applied to all system generated labels like
* "My Day"
Expand Down
6 changes: 3 additions & 3 deletions src/pages/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ class Login extends Component{

}
}
fetchLatestEventsV2().then( () =>{
this.props.router.push(redirectURL)
})
fetchLatestEventsV2()
this.props.router.push(redirectURL)


}else{
toast.error(this.i18next.t("ERROR_GENERIC"))
Expand Down

0 comments on commit c0ecb28

Please sign in to comment.