1
0
Fork 0

Update app.js

changed const to let which fixed launcher bug
master
stweedo 2023-05-07 02:07:58 -05:00 committed by GitHub
parent 6ef609d1d5
commit d61aca2e62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ Graphics.prototype.setFontLondrinaSolid = function() {
); );
}; };
const storage = require('Storage'); let storage = require('Storage');
var settings = Object.assign({ var settings = Object.assign({
// default values // default values
@ -92,4 +92,4 @@ Graphics.prototype.setFontLondrinaSolid = function() {
Bangle.loadWidgets(); Bangle.loadWidgets();
draw(); draw();
setTimeout(Bangle.drawWidgets, 0); setTimeout(Bangle.drawWidgets, 0);
}); })();