Skip to content
This repository has been archived by the owner on Aug 31, 2024. It is now read-only.

Commit

Permalink
Remove redundant log call
Browse files Browse the repository at this point in the history
  • Loading branch information
IzKuipers committed Jul 24, 2023
1 parent e4f0faf commit 36e17cd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/ts/desktop/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ export async function getDesktopMode() {
const req = await (await fetch("./desktop")).text();

DESKTOP_MODE = req.includes("desktop") ? "desktop" : "browser";

console.log(DESKTOP_MODE);
} catch {
DESKTOP_MODE = "browser";
}
Expand Down

0 comments on commit 36e17cd

Please sign in to comment.