Skip to content

Commit

Permalink
fix: basepath regression (#1819)
Browse files Browse the repository at this point in the history
  • Loading branch information
abvthecity authored Nov 15, 2024
1 parent 21848dd commit 7a9205c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const EndpointUrl = React.forwardRef<HTMLDivElement, PropsWithChildren<En
/>
</span>
)}
{!showEnvironment && environmentBasepath && (
{!showEnvironment && environmentBasepath && environmentBasepath !== "/" && (
<span className="t-muted">{environmentBasepath}</span>
)}
{pathParts}
Expand Down

0 comments on commit 7a9205c

Please sign in to comment.