Skip to content

Commit

Permalink
set default value
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardoj committed Feb 23, 2024
1 parent f7aca60 commit af0953b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/pages/home/report/ReportActionItemMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ function ReportActionItemMessage({action, displayAsGroup, reportID, style, isHid
style={style}
source=""
styleAsDeleted={false}
styleAsMuted={false}
/>
</View>
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/report/comment/TextCommentFragment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type TextCommentFragmentProps = {
iouMessage?: string;
};

function TextCommentFragment({fragment, styleAsDeleted, styleAsMuted, source, style, displayAsGroup, iouMessage = ''}: TextCommentFragmentProps) {
function TextCommentFragment({fragment, styleAsDeleted, styleAsMuted = false, source, style, displayAsGroup, iouMessage = ''}: TextCommentFragmentProps) {
const theme = useTheme();
const styles = useThemeStyles();
const {html = '', text} = fragment;
Expand Down

0 comments on commit af0953b

Please sign in to comment.