eslint fix

This commit is contained in:
pa
2026-03-10 22:42:22 +09:00
parent 699bf620e5
commit 4877010006
124 changed files with 980 additions and 1121 deletions

View File

@@ -17,7 +17,6 @@ const userReq = {
* @type {import('../types/api/user').GetUser}
*/
getUser(params) {
return request(`users/${params.userId}`, {
method: 'GET'
}).then((json) => {
@@ -57,7 +56,6 @@ const userReq = {
* @returns {Promise<{json: any, params: {tags: string[]}}>}
*/
addUserTags(params) {
return request(`users/${getCurrentUserId()}/addTags`, {
method: 'POST',
params
@@ -76,7 +74,6 @@ const userReq = {
* @returns {Promise<{json: any, params: {tags: string[]}}>}
*/
removeUserTags(params) {
return request(`users/${getCurrentUserId()}/removeTags`, {
method: 'POST',
params
@@ -114,7 +111,6 @@ const userReq = {
* @type {import('../types/api/user').GetCurrentUser}
*/
saveCurrentUser(params) {
return request(`users/${getCurrentUserId()}`, {
method: 'PUT',
params