Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Dec 21, 2022
1 parent 944618d commit 7da3509
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/meteor/app/ui-utils/client/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import './lib/messageActionDefault';

export { modal } from './lib/modal';
export { AccountBox } from './lib/AccountBox';
export { MessageAction } from './lib/MessageAction';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ function SideBarItemTemplateWithData({
unread={highlighted}
selected={selected}
href={href}
onClick={(): void => !selected && sidebar.toggle()}
onClick={(): void => {
!selected && sidebar.toggle();
}}
aria-label={title}
title={title}
time={lastMessage?.ts}
Expand Down

0 comments on commit 7da3509

Please sign in to comment.