Skip to content

Commit

Permalink
fix profileNavMenu
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiritin committed Jan 22, 2024
1 parent e5c0e85 commit 410144d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/js/Components/Auth/AuthHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const props = defineProps({
const user = computed(() => usePage().props.user)
const profile = [
const profileNavMenu = [
{
name: 'profile',
route: route('settings.profile'),
Expand Down Expand Up @@ -77,7 +77,7 @@ function logout() {
class="z-50 origin-top-right absolute right-0 mt-2 w-48 rounded-md shadow-lg drop-shadow py-1 bg-white dark:bg-primary-600 ring-1 ring-black ring-opacity-5 focus:outline-none"
>
<MenuItem
v-for="item in profile"
v-for="item in profileNavMenu"
:key="item"
v-slot="{ active }"
>
Expand Down

0 comments on commit 410144d

Please sign in to comment.