Skip to content

Commit

Permalink
fix equip skin
Browse files Browse the repository at this point in the history
  • Loading branch information
sk337 committed Jan 23, 2024
1 parent b1800e7 commit db24043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export default function App() {
method: "POST",
headers: {
Authorization: "bearer " + window.localStorage.getItem("token"),
"Content-Type": "appliction/json",
"Content-Type": "application/json",
},
body: JSON.stringify({
token: window.localStorage.getItem("token"),
Expand All @@ -263,7 +263,7 @@ export default function App() {
return;
}
alert(`skin equipped: ${id2skin(eskin).name}`);
// window.location.reload();
window.location.reload();
});
});
}
Expand Down

0 comments on commit db24043

Please sign in to comment.