Skip to content

Commit

Permalink
fix: add underscore prefix to unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hertg committed Nov 8, 2023
1 parent 13e7675 commit 9972478
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Menu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
let sessionName = "";
selectedSession.subscribe(s => {
selectedSession.subscribe(_s => {
sessionName = window.lightdm.sessions.find(k => k.key === $selectedSession)?.name;
})
Expand Down Expand Up @@ -59,4 +59,4 @@
.menu-tr {
@apply top-4 right-4;
}
</style>
</style>

0 comments on commit 9972478

Please sign in to comment.