Skip to content

Commit

Permalink
temporarily disable v2v3 project launches
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyd-eth committed Sep 27, 2024
1 parent 889fdbf commit 9fdc006
Showing 1 changed file with 10 additions and 7 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,12 +27,15 @@ export const PageButtonControl = ({
onClick={onPageDone}
/>
) : (
<DoneButton
disabled={!isNextEnabled}
loading={isNextLoading}
text={doneText}
onClick={onPageDone}
/>
<Tooltip title="Oops! We're experiencing an issue with project launches. Please try again in a few hours. Don’t worry, your data is safe and will be saved.">
<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>
)}
</div>
</div>
Expand Down

0 comments on commit 9fdc006

Please sign in to comment.