Skip to content

Commit

Permalink
Merge pull request #95 from cthit/hotfix/broken-length
Browse files Browse the repository at this point in the history
Remove parentheses
  • Loading branch information
Oscariremma authored Nov 9, 2023
2 parents e799307 + 16a2170 commit cb1cfcd
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 cb1cfcd

Please sign in to comment.