let me know if you run into issues. you can also easily change the colors if you fork it!
Discussion
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,
},
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'
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β€οΈ.
FYI: every time I click profile page, seems it start syncing notes from the beggining.
