Block Library (Avatar Block): Remove Unnecessary '&& check' as 'optional chaining (authorDetails?.avatar_urls) check' is already used #41779
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hey Everyone, This is my first PR. Please review it. 🙂
What?
In line number 81 & 85, There's
&&
check forauthorDetails
and then optional chaining (?.
) is used. Looks like using both of them together is unnecessary.Just only using
authorDetails && authorDetails.avatar_urls
without the 'optional chaining (?
)' is enough.Or Just only using the latter check like
authorDetails?.avatar_urls
is also enough. (I did this one in my PR)Why?
In the scenario where
authorDetails
isnull
orundefined
, just using the optional chaining check like this:authorDetails?.avatar_urls
will prevent any error and will return 'undefined'. So, in that scenario there won't be any error and also asConditional (ternary) operator
is used foravatarUrls
&sizes
, both of this will benull
(won't cause any error).