diff --git a/src/registrar/assets/modules/table-domain-requests.js b/src/registrar/assets/modules/table-domain-requests.js index e408bbd1b..5d5265b88 100644 --- a/src/registrar/assets/modules/table-domain-requests.js +++ b/src/registrar/assets/modules/table-domain-requests.js @@ -220,7 +220,7 @@ export class DomainRequestsTable extends BaseTable { modalHeading = `Are you sure you want to delete ${requested_domain}?`; modalDescription = 'This will remove the domain request from the .gov registrar. This action cannot be undone.'; } else { - if (request.created_at) { + if (created_at) { modalHeading = 'Are you sure you want to delete this domain request?'; modalDescription = `This will remove the domain request (created ${utcDateString(created_at)}) from the .gov registrar. This action cannot be undone`; } else {