diff --git a/9 - Altering data in the server/7 - Promises and errors.md b/9 - Altering data in the server/7 - Promises and errors.md index c8f4207..5b85eb8 100644 --- a/9 - Altering data in the server/7 - Promises and errors.md +++ b/9 - Altering data in the server/7 - Promises and errors.md @@ -98,6 +98,6 @@ const toggleImportanceOf = (id) => { notes.filter((n) => n.id !== id); ``` -- It's probably not a good idea to use alert in more serious React applications. We will soon learn a more advanced way of displaying messages and notifications to users. There are situations, however, where a simple, battle-tested method like alert can function as a starting point. A more advanced method could always be added in later, given that there's time and energy for it. +- It's probably not a good idea to use alert in more serious React applications. We will soon learn a more advanced way of displaying messages and notifications to users. There are situations, however, where a simple, battle-tested method like alert can function as a starting point. A more advanced method could always be added in later, given that there's time and energy for it **For reference, check out `notes finished` file in the same directory**