Skip to content

Commit

Permalink
fix: eslint checks
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliaghisini committed Jan 3, 2025
1 parent ef85633 commit a9b1369
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ class UndoControlpanel extends Component {

toggleCheckedTransactions(items, checked) {
let list = [...this.state.selectedTransactions];
items.map((t) => {
items.forEach((t) => {
const selected = findIndex(list, t) >= 0;
if (selected) {
if (!checked) {
Expand Down Expand Up @@ -495,7 +495,7 @@ class UndoControlpanel extends Component {

const TransactionsTable = ({ items, summary = false }) => {
const getReqType = (str) => {
const regex = /\/([^\/@]*_application_json_[^\/@]*)/;
const regex = /\/([^/@]*_application_json_[^/@]*)/;

const matches = str.match(regex);

Expand Down

0 comments on commit a9b1369

Please sign in to comment.