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

This commit is contained in:
2025-06-01 15:13:52 +03:00
parent 03ea1cf726
commit 2507d776e0
32 changed files with 1832 additions and 445 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 = () => {