ваше сообщение коммита
This commit is contained in:
@@ -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('');
|
||||
|
||||
@@ -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('');
|
||||
|
||||
Reference in New Issue
Block a user