Skip to content

Commit

Permalink
fix toast descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
BatuevIO committed Jan 24, 2025
1 parent f29eddd commit 10b3d70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ onMounted(() => {
if (!profileStore.isLoggedIn) {
toastStore.push({
title: 'Не получится оставить отзыв',
description: 'Вы не привязали ЛК МГУ к своему профилю или не вошли в профиль',
description: 'Вы не вошли в профиль',
type: ToastType.Error,
});
}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/ReviewPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ async function sendReview() {
});
} else if (!profileStore.token) {
toastStore.push({
title: 'Не получится оставить отзыв',
description: 'Вы не привязали ЛК МГУ к своему профилю или не вошли в профиль',
title: 'Войдите в профиль, чтобы оставить отзыв',
type: ToastType.Error,
});
} else {
Expand Down

0 comments on commit 10b3d70

Please sign in to comment.