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

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

@@ -38,10 +38,10 @@
<script setup>
import { ref, computed } from 'vue';
import axios from '@/api/axios';
import { useAuth } from '@/composables/useAuth';
import { useAuthContext } from '@/composables/useAuth';
const emit = defineEmits(['close', 'success']);
const { linkIdentity } = useAuth();
const { linkIdentity } = useAuthContext();
const email = ref('');
const code = ref('');

View File

@@ -17,11 +17,11 @@
<script setup>
import { ref, computed } from 'vue';
import { useAuth } from '@/composables/useAuth';
import { useAuthContext } from '@/composables/useAuth';
import { connectWithWallet } from '@/services/wallet';
const emit = defineEmits(['close']);
const { linkIdentity } = useAuth();
const { linkIdentity } = useAuthContext();
const isLoading = ref(false);
const error = ref('');