1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-16 20:20:38 +09:00

fix(producthunt): prepend producthunt.com to URL

This commit is contained in:
Snazzah 2022-06-04 13:31:24 -05:00 committed by GitHub
parent c05ee42473
commit 169fe10fea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ const Search: React.FC<{ query: string }> = ({ query }) => {
<Result <Result
title={hit.name} title={hit.name}
message={`${hit.tagline} (⬆️ ${hit.vote_count})`} message={`${hit.tagline} (⬆️ ${hit.vote_count})`}
link={hit.url} link={`https://www.producthunt.com${hit.url}`}
icon={<FaProductHunt />} icon={<FaProductHunt />}
key={hit.id} key={hit.id}
/> />