diff --git a/web/components/molecules/ContractOrGateway.tsx b/web/components/molecules/ContractOrGateway.tsx
index d93f8f2..a3922b2 100644
--- a/web/components/molecules/ContractOrGateway.tsx
+++ b/web/components/molecules/ContractOrGateway.tsx
@@ -1,7 +1,8 @@
import { motion } from 'framer-motion';
-import { cx } from 'node:util/cx';
import { FC } from 'react';
+import { cx } from '../../util/cx';
+
export const ContractOrRegister: FC<{
value: number;
setValue: (value: number) => void;
@@ -13,7 +14,7 @@ export const ContractOrRegister: FC<{
className="bg-ens-blue h-full w-[49%] rounded-md absolute left-0"
animate={{ x: value === 0 ? 0 : '100%' }}
>
-
Contract
-
-
+
+
);
diff --git a/web/components/molecules/ProfileButton.tsx b/web/components/molecules/ProfileButton.tsx
index ccd6193..89eee17 100644
--- a/web/components/molecules/ProfileButton.tsx
+++ b/web/components/molecules/ProfileButton.tsx
@@ -1,6 +1,12 @@
import { Button, Profile, Select } from '@ensdomains/thorin';
import { useModal } from 'connectkit';
-import { useAccount, useChainId, useEnsAvatar, useEnsName, useSwitchChain } from 'wagmi';
+import {
+ useAccount,
+ useChainId,
+ useEnsAvatar,
+ useEnsName,
+ useSwitchChain,
+} from 'wagmi';
export const ProfileButton = () => {
const { setOpen } = useModal();
@@ -12,8 +18,7 @@ export const ProfileButton = () => {
return (
- {
- address &&
+ {address && (
<>
);
};
diff --git a/web/components/organisms/deploy/DeploySOResolver.tsx b/web/components/organisms/deploy/DeploySOResolver.tsx
index 4e73f78..de6dc1d 100644
--- a/web/components/organisms/deploy/DeploySOResolver.tsx
+++ b/web/components/organisms/deploy/DeploySOResolver.tsx
@@ -54,6 +54,8 @@ export const DeployResolverCard: FC = () => {
const { chains, switchChain } = useSwitchChain();
+ const {writeContract} = useWriteContract();
+
// const { write, data } = useContractWrite(config);
// const receipt = useWaitForTransaction(data);
@@ -105,7 +107,6 @@ export const DeployResolverCard: FC = () => {