Skip to content

Commit

Permalink
frontend/game: always update beta flag and change issue URL (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
xTVaser authored Oct 25, 2023
1 parent 485038f commit aa60dcc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/routes/Game.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@
activeGame = SupportedGame.Jak1;
}
if (activeGame === SupportedGame.Jak2) {
gameInBeta = true;
}
gameInBeta = activeGame === SupportedGame.Jak2;
gameSupportedByTooling = await doesActiveToolingVersionSupportGame(
getInternalName(activeGame),
Expand Down Expand Up @@ -145,7 +143,7 @@
{$_("gameControls_beta_issueTracker_linkPreText")}
<a
class="text-blue-400"
href="https://github.com/orgs/open-goal/projects/3/views/8?query=is%3Aopen+sort%3Aupdated-desc"
href="https://github.com/open-goal/jak-project/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Ajak2"
target="_blank"
rel="noopener noreferrer"
>{$_("gameControls_beta_issueTracker_linkText")}</a
Expand Down

0 comments on commit aa60dcc

Please sign in to comment.