Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitenite committed Jul 23, 2024
1 parent ed46b73 commit 3634852
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/electron/main/analytics/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ class Analytics {
track(event: string, data?: Record<string, any>, callback?: () => void) {
if (this.mixpanel) {
this.mixpanel.track(event, data || {}, callback);
console.log('Tracked event:', event);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/electron/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process.env.APP_ROOT = path.join(__dirname, '../..');
process.env.WEBVIEW_PRELOAD_PATH = path.join(__dirname, '../preload/webview.js');
process.env.APP_VERSION = app.getVersion();

export const MAIN_VITE_DIST = path.join(process.env.APP_ROOT, 'dist-electron');
export const MAIN_DIST = path.join(process.env.APP_ROOT, 'dist-electron');
export const RENDERER_DIST = path.join(process.env.APP_ROOT, 'dist');
export const VITE_DEV_SERVER_URL = process.env.VITE_DEV_SERVER_URL;
process.env.VITE_PUBLIC = VITE_DEV_SERVER_URL
Expand Down

0 comments on commit 3634852

Please sign in to comment.