Skip to content

Commit

Permalink
fix: add break line
Browse files Browse the repository at this point in the history
  • Loading branch information
johackim committed Oct 3, 2023
1 parent 573aaf6 commit be3bbc6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ export default (app) => {
}
}).catch((e) => {
notification.add({ title: t('Error'), text: t(e.message), type: 'error' });
}).finally(() => {
})
.finally(() => {
setLoading(false);
});

Expand Down

0 comments on commit be3bbc6

Please sign in to comment.