diff --git a/addanother.module b/addanother.module
index a7610d9..5633375 100755
--- a/addanother.module
+++ b/addanother.module
@@ -133,12 +133,7 @@ function addanother_node_form_submit($form, FormStateInterface &$form_state) {
     $type = $node->getType();
     $form_state->setRedirect('node.add', ['node_type' => $type]);
     _addanother_quelch_message($node);
-    $t_args = [
-      '@type' => node_get_type_label($node),
-      '%title' => $node->label(),
-      ':node_link' => $node->toUrl()->toString(),
-    ];
-    \Drupal::messenger()->addMessage(t('@type <a href=":node_link">%title</a> has been created. You may now create another.', $t_args));
+    \Drupal::messenger()->addMessage(t('You may now create another.'));
   }
 }
 
@@ -154,11 +149,9 @@ function addanother_node_form_message_submit($form, FormStateInterface &$form_st
     ]);
     $t_args = [
       '@type' => node_get_type_label($node),
-      '%title' => $node->label(),
-      ':node_link' => $node->toUrl()->toString(),
       ':type_url' => $type_url->toString(),
     ];
-    \Drupal::messenger()->addMessage(t('@type <a href=":node_link">%title</a> has been created. You may <a href=":type_url">add another @type</a>.', $t_args));
+    \Drupal::messenger()->addMessage(t('You may <a href=":type_url">add another @type</a>.', $t_args));
   }
 }
 
