3๐
โ
In the following line, youโre incorrectly overwriting the ref
with a literal:
tradeSizeFactor = data.data.settings.tradeSizeFactor;
^^^^^^^^^^^^^^^
tradeSizeFactor
is a ref
, so the value must be changed via its value
property:
tradeSizeFactor.value = data.data.settings.tradeSizeFactor;
๐
๐คtony19
Source:stackexchange.com