Copy updates #38

Merged
nabarun merged 8 commits from zach/copy into main 2024-11-14 09:10:20 +00:00
6 changed files with 27 additions and 21 deletions
Showing only changes of commit 9acbae91a5 - Show all commits

View File

@ -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 ? (

View File

@ -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) {

View File

@ -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>