Skip to content

Commit 6fd51a9

Browse files
committed
fix: transferable fix
1 parent 3488281 commit 6fd51a9

File tree

1 file changed

+1
-1
lines changed
  • apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/modules/components

1 file changed

+1
-1
lines changed

apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/modules/components/Transferable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function TransferableModule(props: ModuleInstanceProps) {
103103
<TransferableModuleUI
104104
{...props}
105105
isPending={isTransferEnabledQuery.isPending}
106-
isRestricted={!!isTransferEnabledQuery.data}
106+
isRestricted={!isTransferEnabledQuery.data}
107107
adminAddress={props.ownerAccount?.address || ""}
108108
update={update}
109109
isOwnerAccount={!!props.ownerAccount}

0 commit comments

Comments
 (0)