Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsanner committed Mar 14, 2024
1 parent cf4b256 commit f260b5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function getPeople(sessionTitle: string, body: string) {
bio = bio.concat('<h4>' + sessionTitle + '</h4>');
bio = bio.concat('<ul>');

sessions.each((i, el) => {
sessions.each((_i, el) => {
bio = bio.concat('<li>' + $(el).text() + '</li>');
});

Expand Down

0 comments on commit f260b5d

Please sign in to comment.