Skip to content

Commit

Permalink
Fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lodewiges committed Dec 15, 2024
1 parent 4e3722b commit 945c56d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/components/tools/study-room-presence.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default class BoardRoomPresence extends Component {

if (currentStatusses.includes('chilling')) {
return 'Chillen';
}
}

Check warning on line 87 in app/components/tools/study-room-presence.js

View check run for this annotation

Codecov / codecov/patch

app/components/tools/study-room-presence.js#L86-L87

Added lines #L86 - L87 were not covered by tests
if (currentStatusses.includes('studeren')) {
return 'Studying';
Expand All @@ -107,7 +107,7 @@ export default class BoardRoomPresence extends Component {
this.currentUserPresence = null;
});
}

Check warning on line 109 in app/components/tools/study-room-presence.js

View check run for this annotation

Codecov / codecov/patch

app/components/tools/study-room-presence.js#L108-L109

Added lines #L108 - L109 were not covered by tests

@action
newPresence() {
this.currentUserPresence = this.store.createRecord('board-room-presence', {
Expand All @@ -126,4 +126,3 @@ export default class BoardRoomPresence extends Component {
this.presenceModalIsOpen = false;
}
}

Check warning on line 128 in app/components/tools/study-room-presence.js

View check run for this annotation

Codecov / codecov/patch

app/components/tools/study-room-presence.js#L125-L128

Added lines #L125 - L128 were not covered by tests

0 comments on commit 945c56d

Please sign in to comment.