Skip to content

Commit

Permalink
Merge pull request #358 from TFNS/0-fix-typo-in-notification
Browse files Browse the repository at this point in the history
Fix missing word in logged in notification
  • Loading branch information
JJ-8 authored Nov 12, 2024
2 parents e9a14e4 + f1d3d02 commit bb0d4de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion front/src/components/Auth/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default defineComponent({
void this.resolveAndNotify(
this.login(this.form.login, this.form.password),
{
message: `Logged as ${login}!`,
message: `Logged in as ${login}!`,
icon: 'person',
},
);
Expand Down
2 changes: 1 addition & 1 deletion front/src/components/Auth/Register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default defineComponent({
methods: {
submit() {
const opts = {
message: `Logged as ${this.form.login}!`,
message: `Logged in as ${this.form.login}!`,
icon: 'person',
};
let registerPromise;
Expand Down

0 comments on commit bb0d4de

Please sign in to comment.