Skip to content

Commit 10b3d70

Browse files
committed
fix toast descriptions
1 parent f29eddd commit 10b3d70

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ onMounted(() => {
1414
if (!profileStore.isLoggedIn) {
1515
toastStore.push({
1616
title: 'Не получится оставить отзыв',
17-
description: 'Вы не привязали ЛК МГУ к своему профилю или не вошли в профиль',
17+
description: 'Вы не вошли в профиль',
1818
type: ToastType.Error,
1919
});
2020
}

src/pages/ReviewPage.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,7 @@ async function sendReview() {
102102
});
103103
} else if (!profileStore.token) {
104104
toastStore.push({
105-
title: 'Не получится оставить отзыв',
106-
description: 'Вы не привязали ЛК МГУ к своему профилю или не вошли в профиль',
105+
title: 'Войдите в профиль, чтобы оставить отзыв',
107106
type: ToastType.Error,
108107
});
109108
} else {

0 commit comments

Comments
 (0)