File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1253,7 +1253,6 @@ export default function InteractionClient() {
12531253 < div className = "mt-2" >
12541254 < Label className = "text-sm" > Or enter custom ERC20 token address:</ Label >
12551255 < Input
1256- value = { depositToken . startsWith ( '0x' ) && ! depositedTokens . includes ( depositToken ) ? depositToken : '' }
12571256 onChange = { e => setDepositToken ( e . target . value ) }
12581257 placeholder = "0x..."
12591258 className = "bg-white border-gray-300 text-black"
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ import { Button } from "@/components/ui/button"
66import { Avatar , AvatarFallback } from "@/components/ui/avatar"
77import { ConnectButton } from '@rainbow-me/rainbowkit'
88import Image from "next/image"
9+ const getImagePath = ( path : string ) => {
10+ return path ;
11+ } ;
912
1013export default function Navigation ( ) {
1114 const pathname = usePathname ( )
@@ -17,7 +20,7 @@ export default function Navigation() {
1720 < Link href = "/" className = "flex items-center gap-3 hover:opacity-80 transition-opacity" >
1821 < div className = "w-12 h-12 flex items-center justify-center" >
1922 < Image
20- src = "/block.png"
23+ src = { getImagePath ( "/block.png" ) }
2124 alt = "HackHub Logo"
2225 width = { 48 }
2326 height = { 48 }
@@ -39,7 +42,7 @@ export default function Navigation() {
3942 : "text-gray-700 hover:text-amber-800 hover:bg-amber-50/80"
4043 } transition-all duration-200 font-medium`}
4144 >
42- Explorer Hackathons
45+ Explore Hackathons
4346 </ Button >
4447 </ Link >
4548 < Link href = "/createHackathon" >
You can’t perform that action at this time.
0 commit comments