Spaces:
Runtime error
Runtime error
File size: 190 Bytes
029d2df | 1 2 3 4 5 6 7 | export function restoreSubmittedCommentDraft(params: {
currentBody: string;
submittedBody: string;
}) {
return params.currentBody.trim() ? params.currentBody : params.submittedBody;
}
|