Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

clockDisplay stopped working

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);
  }

 

 

Best Answer
0 Votes
1 REPLY 1

suddenly seems to be working again, not sure what the problem was but i had a user contact me about it too.

Best Answer
0 Votes