Skip to content

Commit 6ab8b8d

Browse files
author
Ives van Hoorne
committed
Fix ESLint
1 parent 4a6db67 commit 6ab8b8d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/app/pages/Sandbox/Editor/Workspace/Git/modals/ExportToGithub.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export default class ExportToGithub extends React.PureComponent<Props, State> {
2424

2525
awaitExport = async () => {
2626
const result = await this.props.promise;
27-
console.log(result);
2827
const { closeModal } = this.props;
2928

3029
const message = <div>Exported to GitHub!</div>;

src/app/pages/Sandbox/Editor/Workspace/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class Workspace extends React.PureComponent<Props> {
160160
{sandbox.owned &&
161161
!sandbox.git && (
162162
<WorkspaceItem title="GitHub">
163-
{currentUser.integrations.github ? (
163+
{currentUser.integrations.github ? ( // eslint-disable-line
164164
sandbox.originalGit ? (
165165
<Git
166166
sandboxId={sandbox.id}

0 commit comments

Comments
 (0)