This commit is contained in:
Pierre Grimaud 2020-04-17 20:17:09 +02:00
Родитель ebae922b1a
Коммит 9105ed085a
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -38,7 +38,7 @@ var Preferences = React.createClass({
});
localStorage.setItem('settings.useVM', checked);
util.isNative();
metrics.track('Toggled VM or Native settting', {
metrics.track('Toggled VM or Native setting', {
vm: checked
});
},

Просмотреть файл

@ -28,7 +28,7 @@ module.exports = {
return config;
},
// Retrives the current jwt hub token or null if no token exists
// Retrieves the current jwt hub token or null if no token exists
jwt: function () {
let jwt = localStorage.getItem('auth.jwt');
if (!jwt) {