We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f44215 commit 0fc5cc9Copy full SHA for 0fc5cc9
src/renderer/pages/Home/index.tsx
@@ -16,8 +16,10 @@ import Panels from './Panels';
16
import LogBox from './LogBox';
17
18
const HomePage = () => {
19
+ const currentVersion = window.electron.ipcRenderer.get('get-version');
20
useEffect(() => {
- trackPageView('Home');
21
+ trackPageView(`Home-${currentVersion}`);
22
+ // eslint-disable-next-line react-hooks/exhaustive-deps
23
}, []);
24
25
return (
0 commit comments