Skip to content

Commit

Permalink
fix(features/home/details/details.page.ts): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
olgahaha committed May 13, 2024
1 parent ddf677e commit 7959a71
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/features/home/details/details.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export class DetailsPage {
1
);

private readonly shareMemuDismissed$ = new Subject<void>();
private readonly shareMenuDismissed$ = new Subject<void>();

readonly activeDetailedCapture$ = this._activeDetailedCapture$.pipe(
distinctUntilChanged(),
Expand Down Expand Up @@ -429,7 +429,7 @@ export class DetailsPage {
this.actionSheetController.create({ buttons }).then(sheet => {
sheet.present();
sheet.onDidDismiss().then(() => {
this.shareMemuDismissed$.next();
this.shareMenuDismissed$.next();
});
});
})
Expand Down Expand Up @@ -561,7 +561,7 @@ export class DetailsPage {
return of(downloadResult.path);
}),
untilDestroyed(this),
takeUntil(this.shareMemuDismissed$)
takeUntil(this.shareMenuDismissed$)
)
.toPromise();

Expand Down Expand Up @@ -656,7 +656,7 @@ export class DetailsPage {
toolbarColor: '#564dfc',
})
)
.pipe(untilDestroyed(this), takeUntil(this.shareMemuDismissed$))
.pipe(untilDestroyed(this), takeUntil(this.shareMenuDismissed$))
.toPromise();
}

Expand Down

0 comments on commit 7959a71

Please sign in to comment.