Automattic / wp-api-console

WordPress (.com and .org) API Console written in React/Redux
GNU General Public License v2.0
70 stars 20 forks source link

Remove unintentional optional chain introduced in #91 #93

Closed dmsnell closed 2 years ago

dmsnell commented 2 years ago

In #91 we accidentally introduced an optional chain into the source code via accepting a change proposed during PR review through the Github interface.

It appears that the version of the project build and deployed did not include the optional chain because it was built without pulling the updated changes from the PR.

In this patch we're removing that and thankfully it wasn't necessary because the optionality was already guarded against in the surrounding block.

dmsnell commented 2 years ago

Merging as this is a fix and shouldn't stay in the main tree any longer than it needs to.