Skip to content

Commit

Permalink
Merge pull request #294 from Azir-11/v1.0-beta
Browse files Browse the repository at this point in the history
fix(projects): Fix welcome notification not closing
  • Loading branch information
honghuangdc authored Jan 11, 2024
2 parents d778560 + 748cfa2 commit 257bbfc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/store/modules/auth/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ export const useAuthStore = defineStore(SetupStoreId.Auth, () => {
if (routeStore.isInitAuthRoute) {
window.$notification?.success({
title: $t('page.login.common.loginSuccess'),
content: $t('page.login.common.welcomeBack', { userName: userInfo.userName })
content: $t('page.login.common.welcomeBack', { userName: userInfo.userName }),
duration: 4500
});
}
} catch {
Expand Down

0 comments on commit 257bbfc

Please sign in to comment.