Fix variables for help links in Stash Setup Wizard (#5661)

Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
DogmaDragon
2025-02-18 08:10:34 +02:00
committed by GitHub
parent 3ea49c6c2e
commit e041ad190f

View File

@@ -790,7 +790,7 @@ const ErrorStep: React.FC<{ error: string; goBack: () => void }> = ({
<p>
<FormattedMessage
id="setup.errors.something_went_wrong_description"
values={{ GithubLink, DiscordLink }}
values={{ githubLink: GithubLink, discordLink: DiscordLink }}
/>
</p>
</section>
@@ -881,7 +881,7 @@ const SuccessStep: React.FC<{}> = () => {
<p>
<FormattedMessage
id="setup.success.help_links"
values={{ DiscordLink, GithubLink }}
values={{ discordLink: DiscordLink, githubLink: GithubLink }}
/>
</p>
</section>