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