diff --git a/apps/browser/src/tools/popup/send-v2/send-file-popout-dialog/send-file-popout-dialog-container.component.ts b/apps/browser/src/tools/popup/send-v2/send-file-popout-dialog/send-file-popout-dialog-container.component.ts index d3d481063e..d535bbd86e 100644 --- a/apps/browser/src/tools/popup/send-v2/send-file-popout-dialog/send-file-popout-dialog-container.component.ts +++ b/apps/browser/src/tools/popup/send-v2/send-file-popout-dialog/send-file-popout-dialog-container.component.ts @@ -26,8 +26,8 @@ export class SendFilePopoutDialogContainerComponent implements OnInit { ngOnInit() { if ( - this.config.sendType === SendType.File && - this.config.mode === "add" && + this.config?.sendType === SendType.File && + this.config?.mode === "add" && this.filePopoutUtilsService.showFilePopoutMessage(window) ) { this.dialogService.open(SendFilePopoutDialogComponent);