We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94f5be3 + d7439e7 commit 479f9c5Copy full SHA for 479f9c5
src/welcome/welcome.main.ts
@@ -18,10 +18,10 @@ if (__CHANNEL__ !== 'stable') {
18
document.querySelector<HTMLDivElement>('.footer')!.textContent = __VERSION_TAG__
19
}
20
21
-window.TALK_DESKTOP.systemInfo = await window.TALK_DESKTOP.getSystemInfo() as { isMac: boolean }
+window.systemInfo = await window.TALK_DESKTOP.getSystemInfo()
22
23
quitButton.classList.remove('hidden')
24
-if (window.TALK_DESKTOP.systemInfo.isMac) {
+if (window.systemInfo.isMac) {
25
quitButton.classList.add('quit_mac')
26
27
0 commit comments