Improved the stream page some more and now going to make the game display page a parody of a steam page.

This commit is contained in:
Zed A. Shaw 2025-09-17 01:28:23 -04:00
parent fc99fc955b
commit a013a26d94
8 changed files with 25 additions and 12 deletions

View file

@ -75,6 +75,7 @@ const ConfirmDelete = async (table, obj_id) => {
await fetch("/api/admin/table/" + table + "/" + obj_id,
{ method: "DELETE" });
window.location = "/admin/table/" + table;
return true;
} else {
return false;
}