lemmy-ui/src/shared/utils/app/edit-comment.ts
2023-07-28 16:15:42 -04:00

9 lines
261 B
TypeScript

import { editListImmutable } from "@utils/helpers";
import { CommentView } from "lemmy-js-client";
export default function editComment(
data: CommentView,
comments: CommentView[],
): CommentView[] {
return editListImmutable("comment", data, comments);
}