diff --git a/packages/desktop-client/src/global-events.ts b/packages/desktop-client/src/global-events.ts
index 171f9b8aacbbbede566fbdad04912afd5e379cde..81de6392789c6fca08fed3ec00cad19bb4c72281 100644
--- a/packages/desktop-client/src/global-events.ts
+++ b/packages/desktop-client/src/global-events.ts
@@ -9,17 +9,6 @@ import * as undo from 'loot-core/src/platform/client/undo';
 import { type BoundActions } from './hooks/useActions';
 
 export function handleGlobalEvents(actions: BoundActions, store: Store<State>) {
-  global.Actual.onEventFromMain('update-downloaded', (event, updateInfo) => {
-    actions.setAppState({ updateInfo });
-  });
-
-  global.Actual.onEventFromMain('update-error', () => {
-    // Ignore errors. We don't want to constantly bug the user if they
-    // always have a flaky connection or have intentionally disabled
-    // updates. They will see the error in the about page if they try
-    // to update.
-  });
-
   listen('server-error', () => {
     actions.addGenericErrorNotification();
   });
diff --git a/upcoming-release-notes/3468.md b/upcoming-release-notes/3468.md
new file mode 100644
index 0000000000000000000000000000000000000000..abb00dd5270b87b2fb7bd7a4bbfb015f703eabe1
--- /dev/null
+++ b/upcoming-release-notes/3468.md
@@ -0,0 +1,6 @@
+---
+category: Maintenance
+authors: [MikesGlitch]
+---
+
+Remove old updater logic