Run prettier
All checks were successful
Lint / lint (20.x) (pull_request) Successful in 4m33s

This commit is contained in:
Nabarun 2024-11-14 14:34:43 +05:30
parent a2354279a2
commit 9acbae91a5
6 changed files with 27 additions and 21 deletions

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>