Skip to content

Commit

Permalink
Added missing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonhenry authored Mar 14, 2024
1 parent 5898418 commit 9dc188c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/report/ReportFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function ReportFooter({

const isSmallSizeLayout = windowWidth - (isSmallScreenWidth ? 0 : variables.sideBarWidth) < variables.anonymousReportFooterBreakpoint;
const hideComposer = !ReportUtils.canUserPerformWriteAction(report);
const shouldComposerBeVisible = !hideComposer && (!!shouldShowComposeInput || !isSmallScreenWidth;
const shouldComposerBeVisible = !hideComposer && (!!shouldShowComposeInput || !isSmallScreenWidth);

const mainComposerVisible = useSharedValue(shouldComposerBeVisible ? 1 : 0);
const mainComposerRef = useRef(null);
Expand Down

0 comments on commit 9dc188c

Please sign in to comment.