Skip to content

Commit

Permalink
fix: dandan now works (hacky
Browse files Browse the repository at this point in the history
  • Loading branch information
djpiper28 committed Oct 15, 2024
1 parent 71288da commit 7b0aaa0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/app/q/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export default async function SearchResultPage({
page?: string;
};
}) {
const query = decodeURIComponent(searchParams.query);
const query = decodeURIComponent(
searchParams.query.replaceAll("â", "a").replaceAll("û", "u"),
);
const resp = await fetch(
process.env.BACKEND_URL ?? "http://127.0.0.1:4365/api",
{
Expand Down

0 comments on commit 7b0aaa0

Please sign in to comment.