Skip to content

Commit 5838e82

Browse files
committed
Fix url encoding
1 parent 9535b4c commit 5838e82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Search/Search.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const Search: Component<{
5959
props.onInputConfirm(q);
6060
}
6161
else {
62-
navigate(`/search/${q.replaceAll('#', '%23')}`);
62+
navigate(`/search/${urlSafe.replaceAll('#', '%23')}`);
6363
}
6464
onBlur();
6565
resetQuery();

0 commit comments

Comments
 (0)