diff --git a/packages/nextjs/app/profile/[address]/page.tsx b/packages/nextjs/app/profile/[address]/page.tsx index c939eed..cda5f66 100644 --- a/packages/nextjs/app/profile/[address]/page.tsx +++ b/packages/nextjs/app/profile/[address]/page.tsx @@ -290,6 +290,8 @@ const ProfilePage: NextPage = () => { Revenue + +
{loadingMore && } diff --git a/packages/nextjs/app/search/Search.tsx b/packages/nextjs/app/search/Search.tsx index f22a245..a7fd32a 100644 --- a/packages/nextjs/app/search/Search.tsx +++ b/packages/nextjs/app/search/Search.tsx @@ -46,9 +46,17 @@ export const Search = () => { } }; + const handleKeyDown = (event: React.KeyboardEvent) => { + if (event.key === "Enter") { + handleSearch(); + } + }; + return (
- +
+ +
{/* */}
); diff --git a/packages/nextjs/components/punk-society/ConfigMenu/AddressInfoDropdown.tsx b/packages/nextjs/components/punk-society/ConfigMenu/AddressInfoDropdown.tsx index bc22247..0aa7f38 100644 --- a/packages/nextjs/components/punk-society/ConfigMenu/AddressInfoDropdown.tsx +++ b/packages/nextjs/components/punk-society/ConfigMenu/AddressInfoDropdown.tsx @@ -11,6 +11,7 @@ import { QrCodeIcon, } from "@heroicons/react/24/outline"; import { KeyIcon as KeyIconSolid, LanguageIcon } from "@heroicons/react/24/solid"; +import { SwitchTheme } from "~~/components/SwitchTheme"; import { useOutsideClick } from "~~/hooks/scaffold-eth"; import { getTargetNetworks } from "~~/utils/scaffold-eth"; @@ -91,6 +92,9 @@ export const AddressInfoDropdown = ({ blockExplorerAddressLink }: AddressInfoDro ) : null} +
+ +