File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
packages/nextjs/app/profile/[address] Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,7 @@ import { ErrorComponent } from "../../../components/punk-society/ErrorComponent"
66import { LoadingBars } from "../../../components/punk-society/LoadingBars" ;
77import { NewsFeed } from "../../../components/punk-society/NewsFeed" ;
88import ProfileInfo from "../_components/ProfileInfo" ;
9- import ProfilePictureUpload from "../_components/ProfilePictureUpload" ;
10- import { FundButton , getOnrampBuyUrl } from "@coinbase/onchainkit/fund" ;
119import { NextPage } from "next" ;
12- import { useAccount } from "wagmi" ;
13- import { PencilIcon } from "@heroicons/react/24/outline" ;
14- import { Address , RainbowKitCustomConnectButton } from "~~/components/scaffold-eth" ;
15- import { InputBase } from "~~/components/scaffold-eth" ;
1610import { useScaffoldEventHistory , useScaffoldReadContract , useScaffoldWriteContract } from "~~/hooks/scaffold-eth" ;
1711import { notification } from "~~/utils/scaffold-eth" ;
1812import { getMetadataFromIPFS } from "~~/utils/simpleNFT/ipfs-fetch" ;
@@ -25,8 +19,6 @@ export interface Post extends Partial<NFTMetaData> {
2519 date ?: string ;
2620}
2721
28- const defaultProfilePicture = "/guest-profile.jpg" ;
29-
3022const ProfilePage : NextPage = ( ) => {
3123 const [ articles , setArticles ] = useState < Post [ ] > ( [ ] ) ;
3224 const [ loading , setLoading ] = useState ( true ) ;
You can’t perform that action at this time.
0 commit comments