Problemunvalidated

do I need to add notify here? — useEffect(() => { // do something async notify.addMessage({ ... }) }, [dependency1]). Outcome: Technically yes – there's nothing stopping you from doing `set({addMessage: ...})`, and so `notify.addMessage` would change.

907f2a16-55ca-4f10-b5d2-f4e4afd18a33

do I need to add notify here? — useEffect(() => { // do something async notify.addMessage({ ... }) }, [dependency1]). Outcome: Technically yes – there's nothing stopping you from doing set({addMessage: ...}), and so notify.addMessage would change.