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

@ -17,7 +17,7 @@ const GitSelectionSection = ({
<div className="grow">Github</div>
<div>{'>'}</div>
</div>
{/*
{/*
<div
className="flex gap-4 border-b-2 border-gray-200 cursor-pointer p-1"
onClick={() => {}}
@ -26,7 +26,7 @@ const GitSelectionSection = ({
<div className="grow">Gitea</div>
<div>{'>'}</div>
</div>
*/}
*/}
</>
);
};

View File

@ -92,14 +92,20 @@ 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">
DOCUMENTATION
</a>
<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">
SUPPORT
</a>
<a
className="cursor-pointer font-mono"
href="https://discord.com/invite/ukhbBemyxY"
>
SUPPORT
</a>
</Tabs.Trigger>
</Tabs.List>
</Tabs>

View File

@ -118,11 +118,11 @@ const Id = () => {
<Tabs.Trigger value="deployments">
<Link to="deployments">Deployments</Link>
</Tabs.Trigger>
{/*
{/*
<Tabs.Trigger value="integrations">
<Link to="integrations">Integrations</Link>
</Tabs.Trigger>
*/}
*/}
<Tabs.Trigger value="settings">
<Link to="settings">Settings</Link>
</Tabs.Trigger>

View File

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