optional chaining (?.) vs nullish coalescing (??) operators
What Will Happen Before the Data is Ready?
Look through your code and make sure it won’t blow up if the data isn’t ready (if the value is null). Be especially careful if the data is initialized to or can become null or undefined!
{user && user.name ? user.name : "Not loaded yet&quo...