1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

handle browser routing and basic browser template

This commit is contained in:
rr-bw
2024-09-09 14:45:55 -07:00
parent 81a623d998
commit bdd6f9f6df
6 changed files with 62 additions and 9 deletions

View File

@@ -20,6 +20,7 @@ export function unauthUiRefreshSwap(
defaultComponent: Type<any>,
refreshedComponent: Type<any>,
options: Route,
altOptions?: Route,
): Routes {
return componentRouteSwap(
defaultComponent,
@@ -29,5 +30,6 @@ export function unauthUiRefreshSwap(
return configService.getFeatureFlag(FeatureFlag.UnauthenticatedExtensionUIRefresh);
},
options,
altOptions,
);
}