Skip to content

Commit

Permalink
update UI
Browse files Browse the repository at this point in the history
  • Loading branch information
arjanjohan committed Jul 8, 2024
1 parent 1eb46e7 commit 669b572
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 153 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const ContractReadMethods = ({
);

if (!functionsToDisplay.length) {
return <>No read methods</>;
return <>No view functions</>;
}

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,7 @@ export const ContractUI = ({ contractName, className = "" }: ContractUIProps) =>
</p>
)}
</div>
<div className="bg-base-300 rounded-3xl px-6 lg:px-8 py-4 shadow-lg shadow-base-300">
<ContractVariables
deployedContractData={deployedContractData}
/>
</div>

</div>
<div className="col-span-1 lg:col-span-2 flex flex-col gap-6">
<div className="z-10">
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const ContractWriteMethods = ({
);

if (!functionsToDisplay.length) {
return <>No write methods</>;
return <>No write functions</>;
}

return (
Expand Down
85 changes: 0 additions & 85 deletions packages/nextjs/app/debug/_components/contract/DisplayVariable.tsx

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion packages/nextjs/app/debug/_components/contract/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
export * from "./ContractInput";
export * from "./ContractUI";
export * from "./DisplayVariable";
export * from "./TxReceipt";
export * from "./utilsContract";
export * from "./utilsDisplay";
Expand Down

0 comments on commit 669b572

Please sign in to comment.