front: profile page title set to username

This commit is contained in:
AdrienLSH 2024-01-18 13:41:02 +01:00
parent a7b0051d47
commit b2ae3a1ded

View File

@ -3,7 +3,7 @@ import { client } from "../index.js"
export default class extends AbstractView {
constructor(params) {
super(params, "Profile ");
super(params, params.username);
this.username = params.username;
}