Skip to content

Commit

Permalink
fix: Change to 127.0.0.1 to ensure it's always localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
hiro-v committed Jan 22, 2024
1 parent 8e4a875 commit b8bc0cd
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 @@ -127,7 +127,7 @@ const LocalServerScreen = () => {
</Button>
{serverEnabled && (
<Button block themes="secondaryBlue" asChild>
<a href={`http://localhost:${port}`} target="_blank">
<a href={`http://127.0.0.1:${port}`} target="_blank">
API Reference <ExternalLinkIcon size={20} className="ml-2" />
</a>
</Button>
Expand Down

0 comments on commit b8bc0cd

Please sign in to comment.