From dfea19667b2a3a8a593c97277a746219d1e35bad Mon Sep 17 00:00:00 2001 From: Ricardo Akio Kobayashi Date: Thu, 1 Aug 2024 14:27:29 -0300 Subject: [PATCH] 86dte9qtm - Neon3 - Migrate Screen - Add behavior to "Start Process in Neon2" Button --- app/containers/App/App.jsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/containers/App/App.jsx b/app/containers/App/App.jsx index 6728e2c9e..d807914af 100644 --- a/app/containers/App/App.jsx +++ b/app/containers/App/App.jsx @@ -64,6 +64,11 @@ const App = ({ const handleDeeplink = useCallback(async (uri: string) => { await ipc.invoke('restore') + if (uri === 'neon2://open') { + history.push(ROUTES.MIGRATION_NOTICE) + return + } + const realUri = uri.split('uri=').pop() if (!realUri) return