44 <ion-header class =" stickyHeader" >
55 <ion-toolbar >
66 <ion-button class =" stickyHeader-close" shape =" round" slot =" start" size =" small" fill =" outline"
7- @click =" triggerTabbedPageExitOrNavigate( `/event-selector`)" >
7+ @click =" goBackOrNavigateTo(ionRouter, `/event-selector`, 0 )" >
88 <ion-icon src =" /assets/icons/line/arrow-left-line.svg" ></ion-icon >
99 </ion-button >
1010 <ion-title class =" stickyHeader-title" slot =" start" >{{ LL.Profile() }}</ion-title >
9595
9696<script setup lang="ts">
9797
98- import {IonFooter , useIonRouter } from " @ionic/vue" ;
99- import {useTabbedPageNav } from " @/state/useTabbedPageNav" ;
98+ import {useIonRouter } from " @ionic/vue" ;
10099import {useCurrentUser } from " @/state/useCurrentUser" ;
101- import {shieldCheckmark , checkmarkCircle , warning , closeCircle } from " ionicons/icons" ;
102100import Callout from " @/components/ui/Callout.vue" ;
103101import {typesafeI18n } from " @/i18n/i18n-vue" ;
104102import {computed , toValue } from " vue" ;
105103import {useUserTokensWallet } from " @/state/useUserTokensWallet" ;
104+ import {goBackOrNavigateTo } from " @/router" ;
106105
107106const ionRouter = useIonRouter ();
108107
@@ -111,10 +110,6 @@ const { LL } = typesafeI18n()
111110
112111const { userTokensWalletRef } = useUserTokensWallet ();
113112
114- const {registerTabbedPageNavListeners, triggerTabbedPageExitOrNavigate} = useTabbedPageNav ()
115-
116- registerTabbedPageNavListeners ();
117-
118113const isMyTalksButtonEnabled = computed (() => {
119114 const userTokensWallet = toValue (userTokensWalletRef );
120115 if (! userTokensWallet ) {
0 commit comments