🐛 fixing routing after reset password success

This commit is contained in:
ChatonDeAru
2024-10-04 09:04:41 +02:00
parent 8f21d3d615
commit 9a12d6b6fa
5 changed files with 8 additions and 8 deletions

View File

@@ -7,7 +7,7 @@
// },
// }
export const useProfile = defineStore('profile', () => {
export const useMember = defineStore('member', () => {
const user = useSupabaseUser()
const client = useSupabaseClient()
const { showErrorPage } = useErrorSystem()
@@ -85,5 +85,5 @@ export const useProfile = defineStore('profile', () => {
})
if (import.meta.hot) {
import.meta.hot.accept(acceptHMRUpdate(useProfile, import.meta.hot))
import.meta.hot.accept(acceptHMRUpdate(useMember, import.meta.hot))
}