feat(FN-3399): route desktop remote mode into shell onboarding flow
Removes the standalone `DesktopShellBootstrap` component from the desktop package, routing desktop remote mode into the shell onboarding flow instead. Updates the corresponding test file to reflect the component removal and adjusts the README. Fusion-Task-Id: FN-3399
This commit is contained in:
@@ -39,7 +39,8 @@ export function useDeepLink(): UseDeepLinkResult {
|
||||
return;
|
||||
}
|
||||
|
||||
const unsubscribe = electronAPI.onDeepLink((rawLink: string) => {
|
||||
const unsubscribe = electronAPI.onDeepLink((deepLinkPayload) => {
|
||||
const rawLink = typeof deepLinkPayload === "string" ? deepLinkPayload : deepLinkPayload.raw;
|
||||
const parsed = parseDeepLink(rawLink);
|
||||
if (parsed) {
|
||||
setLastDeepLink(parsed);
|
||||
|
||||
Reference in New Issue
Block a user