This commit is contained in:
parent
a2354279a2
commit
9acbae91a5
@ -47,11 +47,7 @@ export const ChangeStateToProductionDialog = ({
|
|||||||
handleCancel={handleCancel}
|
handleCancel={handleCancel}
|
||||||
open={open}
|
open={open}
|
||||||
handleConfirm={handleConfirm}
|
handleConfirm={handleConfirm}
|
||||||
confirmButtonTitle={
|
confirmButtonTitle={isConfirmButtonLoading ? 'Redeploying' : 'Redeploy'}
|
||||||
isConfirmButtonLoading
|
|
||||||
? 'Redeploying'
|
|
||||||
: 'Redeploy'
|
|
||||||
}
|
|
||||||
confirmButtonProps={{
|
confirmButtonProps={{
|
||||||
disabled: isConfirmButtonLoading,
|
disabled: isConfirmButtonLoading,
|
||||||
rightIcon: isConfirmButtonLoading ? (
|
rightIcon: isConfirmButtonLoading ? (
|
||||||
|
@ -229,7 +229,11 @@ const Configure = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Validate transaction hash
|
// Validate transaction hash
|
||||||
const isTxHashValid = await verifyTx(senderAddress, txHash, amountToBePaid);
|
const isTxHashValid = await verifyTx(
|
||||||
|
senderAddress,
|
||||||
|
txHash,
|
||||||
|
amountToBePaid,
|
||||||
|
);
|
||||||
setIsPaymentLoading(false);
|
setIsPaymentLoading(false);
|
||||||
|
|
||||||
if (isTxHashValid) {
|
if (isTxHashValid) {
|
||||||
|
@ -92,12 +92,18 @@ export const Sidebar = ({ mobileOpen }: SidebarProps) => {
|
|||||||
</a>
|
</a>
|
||||||
</Tabs.Trigger>
|
</Tabs.Trigger>
|
||||||
<Tabs.Trigger icon={<QuestionMarkRoundIcon />} value="">
|
<Tabs.Trigger icon={<QuestionMarkRoundIcon />} value="">
|
||||||
<a className="cursor-pointer font-mono" href="https://store.laconic.com/pages/instruction-faq">
|
<a
|
||||||
|
className="cursor-pointer font-mono"
|
||||||
|
href="https://store.laconic.com/pages/instruction-faq"
|
||||||
|
>
|
||||||
DOCUMENTATION
|
DOCUMENTATION
|
||||||
</a>
|
</a>
|
||||||
</Tabs.Trigger>
|
</Tabs.Trigger>
|
||||||
<Tabs.Trigger icon={<LifeBuoyIcon />} value="">
|
<Tabs.Trigger icon={<LifeBuoyIcon />} value="">
|
||||||
<a className="cursor-pointer font-mono" href="https://discord.com/invite/ukhbBemyxY">
|
<a
|
||||||
|
className="cursor-pointer font-mono"
|
||||||
|
href="https://discord.com/invite/ukhbBemyxY"
|
||||||
|
>
|
||||||
SUPPORT
|
SUPPORT
|
||||||
</a>
|
</a>
|
||||||
</Tabs.Trigger>
|
</Tabs.Trigger>
|
||||||
|
@ -37,11 +37,11 @@ const tabsData = [
|
|||||||
icon: <SwitchIcon />,
|
icon: <SwitchIcon />,
|
||||||
value: 'environment-variables',
|
value: 'environment-variables',
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// label: 'Collaborators',
|
// label: 'Collaborators',
|
||||||
// icon: <CollaboratorsIcon />,
|
// icon: <CollaboratorsIcon />,
|
||||||
// value: 'collaborators',
|
// value: 'collaborators',
|
||||||
// },
|
// },
|
||||||
];
|
];
|
||||||
|
|
||||||
const SettingsTabPanel = () => {
|
const SettingsTabPanel = () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user