Skip to content

Commit

Permalink
Merge branch 'main' into download-button
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriiPrudnikov authored Nov 6, 2023
2 parents d138c77 + 3288dc8 commit 011f81a
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions components/UI/Copyright/Copyright.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ export function Copyright() {
<a href="https://www.openstreetmap.org/" target="_blank" rel="noreferrer">
OpenStreetMap
</a>
{copyright &&
copyright.map((elem) => (
<>
{' · '}
<a href={elem.link} target="_blank" rel="noreferrer">
{elem.name}
</a>
</>
))}
{copyright && (
<>
{' · '}
<a href={copyright.link} target="_blank" rel="noreferrer">
{new URL(copyright.link).host}
</a>
</>
)}
</div>
);
}

1 comment on commit 011f81a

@ekbdev
Copy link

@ekbdev ekbdev commented on 011f81a Nov 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for map ready!

✅ Preview
https://map-klndcytil-ekbdev.vercel.app
https://ekbdev-map-download-button.vercel.app

Built with commit 011f81a.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.