diff --git a/routes/wishlist/index.js b/routes/wishlist/index.js index 164c7a3..ffa12e9 100644 --- a/routes/wishlist/index.js +++ b/routes/wishlist/index.js @@ -182,7 +182,7 @@ module.exports = (db) => { } doc.wishlist = wishlist; await db.put(doc); - req.flash('success', 'Successfully added note!'); + req.flash('success', `Successfully saved note!`); return res.redirect(`/wishlist/${req.params.user}`); }); router.post('/:user/note/remove/:id', verifyAuth(), async (req, res) => {