Skip to content

Commit

Permalink
fix: Change to fixed localhost instead of using host variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hiro-v committed Jan 23, 2024
1 parent fe1baed commit 5c8c6f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/screens/LocalServer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const LocalServerScreen = () => {
</Button>
{serverEnabled && (
<Button block themes="secondaryBlue" asChild>
<a href={`http://${host}:${port}`} target="_blank">
<a href={`http://localhost:${port}`} target="_blank">
API Reference <ExternalLinkIcon size={20} className="ml-2" />
</a>
</Button>
Expand Down

0 comments on commit 5c8c6f4

Please sign in to comment.