Skip to content

Commit

Permalink
Fix unused path const definition
Browse files Browse the repository at this point in the history
  • Loading branch information
asteriscos committed Jul 18, 2022
1 parent e348a85 commit b368f4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class WzReportingTable extends Component {
async getItems() {
try {
const rawItems = await this.reportingHandler.listReports();
const {reports: items = [], path} = rawItems?.data;
const {reports: items = []} = rawItems?.data;
this.setState({
items,
isProcessing: false,
Expand Down

0 comments on commit b368f4d

Please sign in to comment.