diff --git a/auth-web/package.json b/auth-web/package.json
index ac386571e..a0cea0cb4 100644
--- a/auth-web/package.json
+++ b/auth-web/package.json
@@ -1,6 +1,6 @@
{
"name": "auth-web",
- "version": "2.7.2",
+ "version": "2.7.3",
"appName": "Auth Web",
"sbcName": "SBC Common Components",
"private": true,
diff --git a/auth-web/src/components/auth/account-settings/account-info/AccountInfo.vue b/auth-web/src/components/auth/account-settings/account-info/AccountInfo.vue
index 235ad4203..30a1171e5 100644
--- a/auth-web/src/components/auth/account-settings/account-info/AccountInfo.vue
+++ b/auth-web/src/components/auth/account-settings/account-info/AccountInfo.vue
@@ -291,7 +291,7 @@
diff --git a/auth-web/src/components/auth/staff/account-management/StaffPendingAccountInvitationsTable.vue b/auth-web/src/components/auth/staff/account-management/StaffPendingAccountInvitationsTable.vue
index 1da76456d..de96a12ea 100644
--- a/auth-web/src/components/auth/staff/account-management/StaffPendingAccountInvitationsTable.vue
+++ b/auth-web/src/components/auth/staff/account-management/StaffPendingAccountInvitationsTable.vue
@@ -18,17 +18,18 @@
Loading...
- {{ formatDate(item.invitations[0].expiresOn, 'MMM DD, YYYY') }}
+ {{ formatDate(item.invitations[0]?.expiresOn, 'MMM DD, YYYY') }}
-
- {{ item.invitations[0].recipientEmail }}
+
+ {{ item.invitations[0]?.recipientEmail }}