Skip to content

Commit

Permalink
Remove parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
Oscariremma committed Nov 9, 2023
1 parent e799307 commit 16a2170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/use-cases/home/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const getClassName = rooms => {
for (const i in rooms) {
name += "-" + rooms[i].toLowerCase();
}
name += rooms.length();
name += rooms.length;
if (!style.innerHTML.includes(name)) {
style.innerHTML += `.${name}{background: repeating-linear-gradient(45deg,`;
let px = 0;
Expand Down

0 comments on commit 16a2170

Please sign in to comment.