Skip to content

Commit

Permalink
fix: bad links
Browse files Browse the repository at this point in the history
  • Loading branch information
laszlocph committed Sep 10, 2024
1 parent 557cb68 commit 98e0110
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/components/nav/nav.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ function Connecting(props) {
if (expired) {
return (
<div className='rounded-lg bg-red-100 text-red-900 text-sm px-4 mx-1'>
<a href={"/env/"+env.name} className='underline' target="_blank" rel="noopener noreferrer">
<a href={"/env/"+env.name} className='underline' rel="noopener noreferrer">
<span>Ephemeral cluster expired</span>
</a>
</div>
Expand All @@ -434,7 +434,7 @@ function Connecting(props) {

return (
<div className='rounded-lg bg-blue-100 text-blue-900 text-sm px-4'>
<a href="https://gimlet.io/pricing" className='' target="_blank" rel="noopener noreferrer">
<a href={"/env/"+env.name} className='underline' rel="noopener noreferrer">
<span>Ephemeral cluster starting up</span>
<svg className="animate-spin h-3 w-3 text-black dark:text-white inline ml-1" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24">
Expand Down

0 comments on commit 98e0110

Please sign in to comment.