Skip to content

Commit

Permalink
0.1.24 (#69)
Browse files Browse the repository at this point in the history
fix remove button showing on steam games
  • Loading branch information
Raicuparta authored Nov 23, 2023
2 parents 31303c9 + 7c3ca2e commit c022004
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion backend/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rai-pal"
version = "0.1.23"
version = "0.1.24"
authors = ["Raicuparta"]
license = "GPL-3.0-or-later"
repository = "https://github.com/Raicuparta/rai-pal"
Expand Down
16 changes: 9 additions & 7 deletions frontend/components/installed-games/installed-game-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,15 @@ export function InstalledGameModal(props: Props) {
</CommandButton>
</>
)}
<CommandButton
onClick={() => removeGame(props.game.id)}
onSuccess={props.onClose}
leftSection={<IconTrash />}
>
Remove from Rai Pal
</CommandButton>
{props.game.providerId === "Manual" && (
<CommandButton
onClick={() => removeGame(props.game.id)}
onSuccess={props.onClose}
leftSection={<IconTrash />}
>
Remove from Rai Pal
</CommandButton>
)}
</CommandButtonGroup>
{modLoaders.map(
(modLoader) =>
Expand Down

0 comments on commit c022004

Please sign in to comment.