ваше сообщение коммита

This commit is contained in:
2025-06-01 15:13:52 +03:00
parent 5eda7a35c6
commit 6fcb9486c9
34 changed files with 3044 additions and 1226 deletions

View File

@@ -129,7 +129,7 @@ import { useRouter } from 'vue-router';
import eventBus from '../utils/eventBus';
import EmailConnect from './identity/EmailConnect.vue';
import TelegramConnect from './identity/TelegramConnect.vue';
import { useAuth } from '@/composables/useAuth';
import { useAuthContext } from '@/composables/useAuth';
const router = useRouter();
const props = defineProps({
@@ -144,7 +144,7 @@ const props = defineProps({
const emit = defineEmits(['update:modelValue', 'wallet-auth', 'disconnect-wallet', 'telegram-auth', 'email-auth', 'cancel-email-auth']);
const { deleteIdentity } = useAuth();
const { deleteIdentity } = useAuthContext();
// Обработчики событий
const handleWalletAuth = () => {