I dont know why there is no Profile link create, I know It is these code in the /component/TheUserMenu.vue

```

{

title: '個人資料',

// caption: '@quasarframework',

icon: 'account_circle',

// to: '/profile',

match: this.$store.state.keys.pub,

},

Reply to this note

Please Login to reply.

Discussion

looks like I hard coded it before I created a more standard way of matching the path. will fix. search for 'profile' ? '/' + $store.state.keys.pub'

thank you for finding🙃

test if the reply can show up below immediatelly.

Thanks but seems it is out of my knowledge. I try:

```

match: 'profile' ? '/' + $store.state.keys.pub,

```

but syntax error: 201:46 error Parsing error: Unexpected token, expected ":" (63:46)

----

temporarily I will paste my public key directly instead 😃😃😃

hey! sorry I wasn't clear. search for that text in the TheUserMenu.vue file, replace that line with :to="item.to" and update the item array

{

title: 'profile',

icon: 'account_circle',

to: '/' + this.$store.state.keys.pub,

match: this.$store.state.keys.pub,

},

if this is even more confusing... should have an update out in the next day or two that fixed this

Thank you so much. I will try❤️.

Nice. It works. Thank you😂😂

🥳🥳🥳

FYI: every time I click profile page, seems it start syncing notes from the beggining.