fix: dialog types error

This commit is contained in:
pa
2025-07-16 14:58:23 +09:00
committed by Natsumi
parent b23687430e
commit 6b84d7444b
17 changed files with 156 additions and 108 deletions

View File

@@ -77,8 +77,8 @@ const userReq = {
},
/**
* @param {string[]} params User tags to add
* @returns {Promise<{json: any, params: string[]}>}
* @param {{tags: string[]}} params User tags to add
* @returns {Promise<{json: any, params: {tags: string[]}}>}
*/
addUserTags(params) {
const userStore = useUserStore();
@@ -96,8 +96,8 @@ const userReq = {
},
/**
* @param {string[]} params User tags to remove
* @returns {Promise<{json: any, params: string[]}>}
* @param {{tags: string[]}} params User tags to remove
* @returns {Promise<{json: any, params: {tags: string[]}}>}
*/
removeUserTags(params) {
const userStore = useUserStore();