Skip to content

Commit

Permalink
remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Dert1129 committed Apr 10, 2024
1 parent 6d70494 commit 135a57f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/Slides/Menu/SlideList.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ class SlideList extends Component {
let slidePosition = this.state.slidePosition + 1;
let currentSlideTypeIndex = this.state.currentSlideTypeIndex;
let slideTypes = Object.keys(this.props.selectedParticipant.slides);
let openItems = this.state.openItems;
const openAccordion = openItems.includes(currentSlideTypeIndex);
slideTypes.sort();
slideTypes.reverse();

Expand Down Expand Up @@ -98,8 +96,6 @@ handlePreviousSlide() {
let slidePosition = this.state.slidePosition - 1;
let currentSlideTypeIndex = this.state.currentSlideTypeIndex;
let slideTypes = Object.keys(this.props.selectedParticipant.slides);
let openItems = this.state.openItems;
const openAccordion = openItems.includes(currentSlideTypeIndex);
slideTypes.sort();
slideTypes.reverse();

Expand Down

0 comments on commit 135a57f

Please sign in to comment.