Skip to content

Commit

Permalink
fixed entity tab bug
Browse files Browse the repository at this point in the history
  • Loading branch information
yunusemrealtug committed Dec 26, 2023
1 parent 493124f commit 67ce6cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ludos/frontend/src/components/EntityTab.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function EntityTab(data) {
chars.push(entity);
} else if (entity.type === "item") {
its.push(entity);
} else if (entity.type === "area") {
} else if (entity.type === "environment") {
ars.push(entity);
} else if (entity.type === "package") {
pcks.push(entity);
Expand Down

0 comments on commit 67ce6cd

Please sign in to comment.