fix(admin-ui): Fix fix of ShippingMethod update error
Relates to #1800. The first "fix" contains an error in the negated `formValue`
expression. It is very lucky that the precedence of the `!` operator works on the
`formValue` first, otherwise the "fix" would have totally broken things way worse
than before! As it stands, it _did_ fix the issue in question but at the same time
broken the null check in a way that meant the `throw` statement could _never_ be reached.