diff --git a/packages/nextjs/pages/agent-explorer/index.tsx b/packages/nextjs/pages/agent-explorer/index.tsx
index 428f96be..00ccca94 100644
--- a/packages/nextjs/pages/agent-explorer/index.tsx
+++ b/packages/nextjs/pages/agent-explorer/index.tsx
@@ -102,7 +102,7 @@ const AgentExplorer: NextPage = () => {
))}
- {loading && }
+ {loading && }
);
};
diff --git a/packages/nextjs/pages/registration/[id].tsx b/packages/nextjs/pages/registration/[id].tsx
index 52e8c75a..b934ba1f 100644
--- a/packages/nextjs/pages/registration/[id].tsx
+++ b/packages/nextjs/pages/registration/[id].tsx
@@ -44,7 +44,7 @@ const Page = ({ router }: WithRouterProps) => {
const [initialData, setInitialData] = useState();
const [deedData, setDeedData] = useState(defaultData);
const [errorCode, setErrorCode] = useState(undefined);
- const { id: chainId, stableCoin: stableCoinAddress } = getTargetNetwork();
+ const { id: chainId, stableCoin } = getTargetNetwork();
const deedClient = useDeedClient();