mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 12:06:55 +00:00
chore(nc-gui): fix type issues and set proper ref types
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
import { message } from 'ant-design-vue'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import type { RequestParams } from 'nocodb-sdk'
|
||||
import UsersModal from './user-management/UsersModal.vue'
|
||||
import FeedbackForm from './user-management/FeedbackForm.vue'
|
||||
@@ -11,6 +10,7 @@ import {
|
||||
useApi,
|
||||
useClipboard,
|
||||
useDashboard,
|
||||
useI18n,
|
||||
useNuxtApp,
|
||||
useProject,
|
||||
useUIPermission,
|
||||
@@ -128,7 +128,7 @@ const resendInvite = async (user: User) => {
|
||||
if (!project.value?.id) return
|
||||
|
||||
try {
|
||||
await api.auth.projectUserResendInvite(project.value.id, user.id, null)
|
||||
await api.auth.projectUserResendInvite(project.value.id, user.id)
|
||||
|
||||
// Invite email sent successfully
|
||||
message.success(t('msg.success.inviteEmailSent'))
|
||||
|
||||
Reference in New Issue
Block a user