Skip to content

Commit

Permalink
fix: search was broken due to the last "fix" of escaping characters i…
Browse files Browse the repository at this point in the history
…n profile names (#437)
  • Loading branch information
Zir0h authored Nov 28, 2024
1 parent 56e6ddc commit 7bffd88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
---
version: "3.8"
services:
teia-ui:
image: registry.ziroh.be/teia-community/teia-ui:develop
build:
dockerfile: docker/Dockerfile
context: .
Expand Down
5 changes: 4 additions & 1 deletion src/pages/home/subjkts-search-results.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ function SubjktsSearchResults() {
{holders.map(({ user_address, name, metadata }) => (
<div key={name} className={styles.subjkt_result}>
<div className={styles.flex}>
<Link className={styles.user_box} to={encodeURIComponent(`/${name}`)}>
<Link
className={styles.user_box}
to={`/${encodeURIComponent(name)}`}
>
{metadata.data && (
<Identicon
className={styles.subjkt_icon}
Expand Down

0 comments on commit 7bffd88

Please sign in to comment.