diff --git a/src/app/send/send.component.ts b/src/app/send/send.component.ts
index e12a0708..f0b17b4d 100644
--- a/src/app/send/send.component.ts
+++ b/src/app/send/send.component.ts
@@ -72,6 +72,6 @@ export class SendComponent extends BaseSendComponent implements OnInit {
}
get selectedSendType() {
- return this.sends.find(s => s.id === this.sendId).type;
+ return this.sends.find(s => s.id === this.sendId)?.type;
}
}
diff --git a/src/locales/en/messages.json b/src/locales/en/messages.json
index 8e6068a2..81a593ad 100644
--- a/src/locales/en/messages.json
+++ b/src/locales/en/messages.json
@@ -1568,5 +1568,20 @@
"textHiddenByDefault": {
"message": "When accessing the Send, hide the text by default",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "createdSend": {
+ "message": "Created Send",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "editedSend": {
+ "message": "Edited Send",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "deletedSend": {
+ "message": "Deleted Send",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "newPassword": {
+ "message": "New Password"
}
}