Skip to content

Commit

Permalink
feat(map): changes in map info pop-up (#3977)
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhart1o1 authored Feb 11, 2024
1 parent 7513526 commit a010255
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions apps/map/components/map/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -292,13 +292,16 @@ export default function MapComponent({ mapData, googleMapsApiKey }: MapComponent
>
<div className="flex-col min-h-10 min-w-10 justify-center align-middle w-full">
<h2 className="font-medium text-lg mb-3 text-center">
{selectedMarker.username}
{selectedMarker.mapInfo.title}
</h2>
<h3 className="font-medium text-md mb-3 text-center">
{selectedMarker.username}
</h3>
<Link
target="_blank"
href={`https://pay.blink.sv/${selectedMarker.username}`}
>
<button className="w-full px-3 py-2 text-xs font-medium text-center bg-yellow-400 rounded-md">
<button className="w-full px-3 py-2 text-xs font-medium text-center bg-orange-500 rounded-full text-white">
Pay this user
</button>
</Link>
Expand Down

0 comments on commit a010255

Please sign in to comment.