Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davisagli committed Aug 12, 2024
1 parent 8494830 commit ec15676
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/components/manage/Controlpanels/Aliases.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,12 @@ class Aliases extends Component {
}
}
if (this.props.aliases.add.loading && nextProps.aliases.add.loaded) {
const { filterQuery, filterType, createdBefore, itemsPerPage } =
this.state;
const {
filterQuery,
filterType,
createdBefore,
itemsPerPage,
} = this.state;

this.props.getAliases(getBaseUrl(this.props.pathname), {
query: filterQuery,
Expand All @@ -194,8 +198,12 @@ class Aliases extends Component {
}
}
if (this.props.aliases.remove.loading && nextProps.aliases.remove.loaded) {
const { filterQuery, filterType, createdBefore, itemsPerPage } =
this.state;
const {
filterQuery,
filterType,
createdBefore,
itemsPerPage,
} = this.state;

this.props.getAliases(getBaseUrl(this.props.pathname), {
query: filterQuery,
Expand Down

0 comments on commit ec15676

Please sign in to comment.