Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

Fix typos #5633

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Preferences.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
});
},
Expand Down
2 changes: 1 addition & 1 deletion src/utils/HubUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down