update README, remove un necessary instructions

This commit is contained in:
Sebastian Velez
2023-04-27 09:38:29 -05:00
parent 8fabea1aa8
commit 0be4c42b52
3 changed files with 1 additions and 12 deletions

View File

@@ -351,7 +351,7 @@ class WakaTimeCore {
getOperatingSystem(): Promise<string> {
return new Promise((resolve) => {
chrome.runtime.getPlatformInfo(function(info) {
chrome.runtime.getPlatformInfo(function (info) {
resolve(`${info.os}_${info.arch}`);
});
});