Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomura committed Feb 6, 2025
1 parent 4e7a81f commit 6b5cc7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/webviews/components/issue/CreateIssuePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export default class CreateIssuePage extends AbstractIssueEditorPage<Emit, Accep

this.setState({ fieldValues: { ...this.state.fieldValues, ...{ [fieldkey]: serFiles } } });
})
.finally(() => this.attachingInProgress = false);
.finally(() => (this.attachingInProgress = false));
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/webviews/components/issue/JiraIssuePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ export default class JiraIssuePage extends AbstractIssueEditorPage<Emit, Accept,
files: serFiles,
});
})
.finally(() => this.attachingInProgress = false);
.finally(() => (this.attachingInProgress = false));
};

handleDeleteAttachment = (file: any) => {
Expand Down

0 comments on commit 6b5cc7b

Please sign in to comment.