Update packages/mermaid/src/diagrams/class/classDb.ts

Co-authored-by: Sidharth Vinod <github@sidharth.dev>
This commit is contained in:
Justin Greywolf
2024-11-13 06:17:25 -08:00
parent a80171a7ce
commit 77a16fc3fa

View File

@@ -51,7 +51,7 @@ const splitClassIdAndType = function (_id: string) {
genericType = sanitizeText(split[1]); genericType = sanitizeText(split[1]);
} }
return { classId: classId, type: genericType }; return { classId, type: genericType };
}; };
/** /**