Skip to content

Commit

Permalink
Changed a let to const.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyanziano committed Nov 28, 2018
1 parent da0e3ab commit dbd646b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/client/src/ui/shell/mdi/tabBar/tabBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class TabBar extends React.Component<TabBarProps, TabBarState> {
activeDoc.contentType === Constants.CONTENT_TYPE_LIVE_CHAT);
const splitEnabled = Object.keys(this.props.documents).length > 1;

let widgets: JSX.Element[] = [];
const widgets: JSX.Element[] = [];

if (presentationEnabled) {
widgets.push(
Expand Down

0 comments on commit dbd646b

Please sign in to comment.