You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the configuration options are defined in the URL query parameters, we are actually getting strings. This causes issues if the value of the configuration parameter should not be a string.
For example, for deepLinking we should actually have a boolean value, but instead we'll have a string "true". This means that this configuration option won't actually be activated.
To fix this, we need to cast values into proper types if we can, ex. for number and boolean. We won't be parsing object and array type values.
The text was updated successfully, but these errors were encountered:
When the configuration options are defined in the URL query parameters, we are actually getting
strings
. This causes issues if the value of the configuration parameter should not be astring
.For example, for
deepLinking
we should actually have aboolean
value, but instead we'll have a string"true"
. This means that this configuration option won't actually be activated.To fix this, we need to cast values into proper types if we can, ex. for
number
andboolean
. We won't be parsingobject
andarray
type values.The text was updated successfully, but these errors were encountered: