Skip to content

Commit

Permalink
🎨 chore: fix typo in success message
Browse files Browse the repository at this point in the history
  • Loading branch information
rezk2ll committed Jul 9, 2024
1 parent 54d0c54 commit 7037b9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tom-server/src/vault-api/controllers/vault.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const saveRecoveryWords = (db: TwakeDB): expressAppHandler => {
.then((_) => {
res
.status(200)
.json({ message: 'Recovery words updated sucessfully' })
.json({ message: 'Updated recovery words sucessfully' })
})
.catch((err) => {
next(err)
Expand All @@ -32,7 +32,7 @@ export const saveRecoveryWords = (db: TwakeDB): expressAppHandler => {
.then((_) => {
res
.status(201)
.json({ message: 'Recovery words saved sucessfully' })
.json({ message: 'Saved recovery words sucessfully' })
})
.catch((err) => {
next(err)
Expand Down

0 comments on commit 7037b9f

Please sign in to comment.