We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f79ae0e commit e146b53Copy full SHA for e146b53
auth-web/src/routes/router.ts
@@ -231,7 +231,7 @@ export function getRoutes (): RouteConfig[] {
231
path: '/account/:orgId',
232
name: 'account',
233
beforeEnter: (to, from, next) => {
234
- if (LaunchDarklyService.getFlag(LDFlags.EnableBusinessRegistryDashboard) && to.query.newbrd === 'true') {
+ if (LaunchDarklyService.getFlag(LDFlags.EnableBusinessRegistryDashboard) && to.query.noRedirect !== 'true') {
235
window.location.href = ConfigHelper.getNewBusinessRegistryDashboardUrl()
236
} else {
237
next()
0 commit comments