chore: removing little-used session sharing feature (#4249)

This commit is contained in:
Alex Hancock
2025-08-22 10:49:18 -04:00
committed by GitHub
parent 69ad4cad63
commit 180661f26f
11 changed files with 55 additions and 890 deletions
+1 -1
View File
@@ -178,7 +178,7 @@ const handleViewTypeDeepLink = (viewType: string, recipeConfig: unknown) => {
recipes: '#/recipes',
permission: '#/permission',
ConfigureProviders: '#/configure-providers',
sharedSession: '#/shared-session',
recipeEditor: '#/recipe-editor',
welcome: '#/welcome',
};
-4
View File
@@ -13,7 +13,6 @@ export type View =
| 'settingsV2'
| 'sessions'
| 'schedules'
| 'sharedSession'
| 'loading'
| 'recipeEditor'
| 'recipes'
@@ -61,9 +60,6 @@ export const createNavigationHandler = (navigate: NavigateFunction) => {
case 'ConfigureProviders':
navigate('/configure-providers', { state: options });
break;
case 'sharedSession':
navigate('/shared-session', { state: options });
break;
case 'recipeEditor':
navigate('/recipe-editor', { state: options });
break;