diff --git a/web/scripts/app.js b/web/scripts/app.js
index dee4f65a..10019ce8 100644
--- a/web/scripts/app.js
+++ b/web/scripts/app.js
@@ -902,9 +902,9 @@ class ComfyApp {
if (missingNodeTypes.length) {
this.ui.dialog.show(
- `When loading the graph, the following node types were not found:
${missingNodeTypes.map(
+ `When loading the graph, the following node types were not found: ${Array.from(new Set(missingNodeTypes)).map(
(t) => `- ${t}
`
- )}
Nodes that have failed to load will show as red on the graph.`
+ ).join("")}
Nodes that have failed to load will show as red on the graph.`
);
}
}