fix linter issues

Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
This commit is contained in:
Benny Samir Hierl 2022-01-29 11:22:40 +01:00
parent 1f24947aab
commit 0efc3b8a87
3 changed files with 2 additions and 3 deletions

View file

@ -1,5 +1,4 @@
import { prisma } from '../../services'
import { Wishlist, WishlistItem } from '../../../types'
export default {
getAll: async (): Promise<any> => {

View file

@ -20,7 +20,7 @@ export const getAll = <any>{
},
},
},
handler: async (request: FastifyRequest, reply: FastifyReply) => {
handler: async () => {
return await wishlist.getAll()
},
}

View file

@ -1,6 +1,6 @@
import apiService from '@/services/apiService'
import { Wishlist } from '@/types'
import { reactive, ref } from 'vue'
import { reactive } from 'vue'
const apiClient = apiService.getClient()
const prefix = '/wishlist'