mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-05-13 05:07:46 +00:00
Merge pull request #41 from Y4ELX/fix-tag-links-on-mii-details-to-use-query-parameters
fix: update tag links to use query parameters
This commit is contained in:
commit
18a49a74e8
1 changed files with 1 additions and 1 deletions
|
|
@ -271,7 +271,7 @@ export default function MiiPage() {
|
|||
{/* Tags */}
|
||||
<div id="tags" className="flex flex-wrap gap-1 mt-1 *:px-2 *:py-1 *:bg-orange-300 *:rounded-full *:text-xs">
|
||||
{mii.tags.map((tag: string) => (
|
||||
<Link to={`/tags=${tag}`} key={tag}>
|
||||
<Link to={`/?tags=${encodeURIComponent(tag)}`} key={tag}>
|
||||
{tag}
|
||||
</Link>
|
||||
))}
|
||||
|
|
|
|||
Loading…
Reference in a new issue