Textarea doesn't scroll on keyboard show after Apple Testflight processing

Continuing the discussion from Keyboard - Scroll Up Not working on IOS:

On the iOS emulator and in Safari browser, clicking in a textarea shows the keyboard, and scrolls the textarea upwards so it is still viewable.

When the app is archived and processed through Apple iOS TestFlight, the behaviour is changed.
Now, clicking in a textarea shows the keyboard, but the textarea no longer scolls upwards so it is hidden.

See below for related post…

Turns out that we had one view that was manually disabling the keyboard scroll using:

cordova.plugins.Keyboard.disableScroll(true)

We weren’t re-enabling this on a switch to another view.

The result is that in the emulator, the scroll disabling didn’t traverse the scope to the new page, whereas after archival and TestFlight, it did.