Skip to content

Commit

Permalink
Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
cubuspl42 committed Nov 14, 2023
1 parent 66092e7 commit a9eb468
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/pages/home/report/comment/AttachmentCommentFragment.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ const propTypes = {
};

function AttachmentCommentFragment({addExtraMargin, html, source}) {
return <View style={addExtraMargin ? styles.mt2 : {}}>
<RenderCommentHTML
source={source}
html={html}
/>
</View>;
return (
<View style={addExtraMargin ? styles.mt2 : {}}>
<RenderCommentHTML
source={source}
html={html}
/>
</View>
);
}

AttachmentCommentFragment.propTypes = propTypes;
Expand Down

0 comments on commit a9eb468

Please sign in to comment.