1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 05:53:42 +00:00

PM-14927 string to null resolution

This commit is contained in:
voommen-livefront
2025-01-02 12:33:21 -06:00
parent c6b2fcc927
commit af0dcbb739

View File

@@ -69,7 +69,7 @@ export class AllApplicationsComponent implements OnInit, OnDestroy {
.pipe(
takeUntilDestroyed(this.destroyRef),
map(async (params) => {
const organizationId = params.get("organizationId");
const organizationId = params.get("organizationId") ?? "";
this.organization = (await firstValueFrom(
this.organizationService.get$(organizationId),
)) as Organization;