diff --git a/clone.module b/clone.module
index 84f2226..d235f91 100644
--- a/clone.module
+++ b/clone.module
@@ -163,3 +163,14 @@ function clone_form_node_admin_content_alter(&$form, $form_state, $form_id) {
     }
   }
 }
+
+/**
+ * Implements hook_menu_local_tasks_alter
+ */
+function clone_menu_local_tasks_alter(&$data, $router_item, $root_path) {
+  // Remove tabs from node clone form - these are confusing as they refer to
+  // the cloned node.
+  if ($root_path == 'node/%/clone') {
+    $data['tabs'][0]['output'] = array();
+  }
+}
