We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80aa062 commit 9b1b7b0Copy full SHA for 9b1b7b0
apps/web/app/(basenames)/name/[username]/renew/page.tsx
@@ -10,7 +10,8 @@ type PageProps = {
10
11
export default async function Page(props: PageProps) {
12
const params = await props.params;
13
- const name = params.username.split('.')[0];
+ const decodedUsername = decodeURIComponent(params.username);
14
+ const name = decodedUsername.split('.')[0];
15
const formattedName = await formatDefaultUsername(name);
16
17
if (isBasenameRenewalsKilled) {
0 commit comments