]> Untitled Git - lemmy-ui.git/blob - src/shared/utils/app/edit-comment.ts
fix submodule error
[lemmy-ui.git] / src / shared / utils / app / edit-comment.ts
1 import { editListImmutable } from "@utils/helpers";
2 import { CommentView } from "lemmy-js-client";
3
4 export default function editComment(
5   data: CommentView,
6   comments: CommentView[],
7 ): CommentView[] {
8   return editListImmutable("comment", data, comments);
9 }