Skip to content

Commit

Permalink
fix: v2v3 create (wrong terminal) (#4471)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyd-eth authored Sep 28, 2024
1 parent d765de1 commit 7faeb22
Showing 1 changed file with 7 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Tooltip } from 'antd'
import { useContext } from 'react'
import { PageContext } from '../contexts/PageContext'
import { BackButton } from './components/BackButton'
import { DoneButton } from './components/DoneButton'
import { NextButton } from './components/NextButton'

export const PageButtonControl = ({
Expand All @@ -27,15 +27,12 @@ export const PageButtonControl = ({
onClick={onPageDone}
/>
) : (
<Tooltip title="Oops! We're experiencing an issue with project launches. Please try again later.">
<div className="bg-grey-500 rounded-lg px-3 py-4">Launch project</div>
{/* <DoneButton
disabled={true}//!isNextEnabled}
loading={isNextLoading}
text={doneText}
onClick={onPageDone}
/> */}
</Tooltip>
<DoneButton
disabled={!isNextEnabled}
loading={isNextLoading}
text={doneText}
onClick={onPageDone}
/>
)}
</div>
</div>
Expand Down

0 comments on commit 7faeb22

Please sign in to comment.