Skip to content

Commit

Permalink
Fix more bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
RedstoneWizard08 committed Mar 10, 2023
1 parent 1b10be9 commit 3eef414
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/routes/Instance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const Instance = () => {
<p className="time">
<i className="fa-solid fa-clock" />
&nbsp;&nbsp;
{instanceInfo?.timePlayed || "0 minutes"}
{instanceInfo?.time_played || "0 minutes"}
</p>

{editing ? (
Expand Down
2 changes: 1 addition & 1 deletion app/src/routes/mods/Browse.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const Browse = () => {
setLoading(true);

const data = await invoke_proxy("get_mods", {
gameId: 22407,
game_id: 22407,
count: perPage,
page,
});
Expand Down

0 comments on commit 3eef414

Please sign in to comment.