From 7dff870c9313968e419740a461d8fc8f0a77a42d Mon Sep 17 00:00:00 2001 From: aj-rosado <109146700+aj-rosado@users.noreply.github.com> Date: Tue, 19 Dec 2023 18:35:03 +0000 Subject: [PATCH] looking to routeOrgId instead orgId to redirect the user (#7216) --- apps/web/src/app/tools/import/import-web.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/app/tools/import/import-web.component.ts b/apps/web/src/app/tools/import/import-web.component.ts index d29212a08b5..a4c64728aa2 100644 --- a/apps/web/src/app/tools/import/import-web.component.ts +++ b/apps/web/src/app/tools/import/import-web.component.ts @@ -34,7 +34,7 @@ export class ImportWebComponent implements OnInit { * Callback that is called after a successful import. */ protected async onSuccessfulImport(organizationId: string): Promise { - if (!organizationId) { + if (!this.routeOrgId) { await this.router.navigate(["vault"]); return; }