Hi I have noticed that the preferences.clockDisplay is not working.
On the simulator all is fine but on the watch updating the options on fitbit.com is not working anymore.
is there a known issue ?
here is my code in case:
import { preferences } from "user-settings";
if (preferences.clockDisplay === "12h") {
// 12h format
hours = hours % 12 || 12;
} else {
// 24h format
hours = util.zeroPad(hours);
}