Skip to content

Commit

Permalink
Fix reg
Browse files Browse the repository at this point in the history
  • Loading branch information
Corantin committed Jun 7, 2024
1 parent 906d979 commit 939a15a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/pages/agent-explorer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const AgentExplorer: NextPage = () => {
<AgentCard key={agent.id} agent={agent} />
))}
</div>
{loading && <span className="loading loading-bars loading-lg my-8"></span>}
{loading && <span className="loading loading-bars loading-lg my-8" />}
</div>
);
};
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/pages/registration/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const Page = ({ router }: WithRouterProps) => {
const [initialData, setInitialData] = useState<DeedInfoModel>();
const [deedData, setDeedData] = useState<DeedInfoModel>(defaultData);
const [errorCode, setErrorCode] = useState<ErrorCode | undefined>(undefined);
const { id: chainId, stableCoin: stableCoinAddress } = getTargetNetwork();
const { id: chainId, stableCoin } = getTargetNetwork();

const deedClient = useDeedClient();

Expand Down

0 comments on commit 939a15a

Please sign in to comment.