]> Untitled Git - lemmy-ui.git/blobdiff - src/shared/utils/app/comments-to-flat-nodes.ts
Upgrading deps, running prettier. (#1987)
[lemmy-ui.git] / src / shared / utils / app / comments-to-flat-nodes.ts
index bc80015b235073bdf2da8d12aa23439b1b7906cc..1e9908b6ffeefa19b01fab03d437aedb8ac9ee36 100644 (file)
@@ -2,7 +2,7 @@ import { CommentView } from "lemmy-js-client";
 import { CommentNodeI } from "../../interfaces";
 
 export default function commentsToFlatNodes(
-  comments: CommentView[]
+  comments: CommentView[],
 ): CommentNodeI[] {
   const nodes: CommentNodeI[] = [];
   for (const comment of comments) {