Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/UI/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -446,4 +446,4 @@ const Navbar: FunctionComponent = () => {
);
};

export default Navbar;
export default Navbar;
7 changes: 7 additions & 0 deletions components/identities/availableIdentities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,13 @@ const AvailableIdentities = ({ tokenId }: { tokenId: string }) => {
selectedExpiredDomain,
]);

useEffect(() => {
// Check if we're on the main identities page (without specific tokenId)
if (router.pathname === "/identities" && !router.query.tokenId) {
setIsUpdatingPp(false)
}
}, [router.pathname, router.query.tokenId])

const connectWallet = async (connector: Connector) => {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
Expand Down