This commit is contained in:
parent
a2354279a2
commit
9acbae91a5
@ -47,11 +47,7 @@ export const ChangeStateToProductionDialog = ({
|
||||
handleCancel={handleCancel}
|
||||
open={open}
|
||||
handleConfirm={handleConfirm}
|
||||
confirmButtonTitle={
|
||||
isConfirmButtonLoading
|
||||
? 'Redeploying'
|
||||
: 'Redeploy'
|
||||
}
|
||||
confirmButtonTitle={isConfirmButtonLoading ? 'Redeploying' : 'Redeploy'}
|
||||
confirmButtonProps={{
|
||||
disabled: isConfirmButtonLoading,
|
||||
rightIcon: isConfirmButtonLoading ? (
|
||||
|
@ -229,7 +229,11 @@ const Configure = () => {
|
||||
}
|
||||
|
||||
// Validate transaction hash
|
||||
const isTxHashValid = await verifyTx(senderAddress, txHash, amountToBePaid);
|
||||
const isTxHashValid = await verifyTx(
|
||||
senderAddress,
|
||||
txHash,
|
||||
amountToBePaid,
|
||||
);
|
||||
setIsPaymentLoading(false);
|
||||
|
||||
if (isTxHashValid) {
|
||||
|
@ -92,12 +92,18 @@ export const Sidebar = ({ mobileOpen }: SidebarProps) => {
|
||||
</a>
|
||||
</Tabs.Trigger>
|
||||
<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
|
||||
</a>
|
||||
</Tabs.Trigger>
|
||||
<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
|
||||
</a>
|
||||
</Tabs.Trigger>
|
||||
|
@ -37,11 +37,11 @@ const tabsData = [
|
||||
icon: <SwitchIcon />,
|
||||
value: 'environment-variables',
|
||||
},
|
||||
// {
|
||||
// label: 'Collaborators',
|
||||
// icon: <CollaboratorsIcon />,
|
||||
// value: 'collaborators',
|
||||
// },
|
||||
// {
|
||||
// label: 'Collaborators',
|
||||
// icon: <CollaboratorsIcon />,
|
||||
// value: 'collaborators',
|
||||
// },
|
||||
];
|
||||
|
||||
const SettingsTabPanel = () => {
|
||||
|
Loading…
Reference in New Issue
Block a user