Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
Fix lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhackett1024 authored and Jason Laster committed Dec 18, 2018
1 parent 02b6974 commit 0349e0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/PrimaryPanes/SourcesTreeItem.js
Expand Up @@ -158,7 +158,7 @@ class SourceTreeItem extends Component<Props, State> {
}

renderItemName() {
const { item, depth } = this.props;
const { item } = this.props;

switch (item.name) {
case "ng://":
Expand Down
3 changes: 1 addition & 2 deletions src/reducers/pause.js
Expand Up @@ -272,9 +272,8 @@ function update(
command: action.command,
previousLocation: getPauseLocation(threadState(), action)
});
} else {
return updateThreadState({ command: null });
}
return updateThreadState({ command: null });

case "RESUME":
// Workaround for threads resuming before the initial connection.
Expand Down

0 comments on commit 0349e0a

Please sign in to comment.