mirror of
https://github.com/ThisIsBenny/wishlist-app.git
synced 2025-06-07 05:57:41 +00:00
fix linter issues
Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
This commit is contained in:
parent
1f24947aab
commit
0efc3b8a87
3 changed files with 2 additions and 3 deletions
|
@ -1,5 +1,4 @@
|
|||
import { prisma } from '../../services'
|
||||
import { Wishlist, WishlistItem } from '../../../types'
|
||||
|
||||
export default {
|
||||
getAll: async (): Promise<any> => {
|
||||
|
|
|
@ -20,7 +20,7 @@ export const getAll = <any>{
|
|||
},
|
||||
},
|
||||
},
|
||||
handler: async (request: FastifyRequest, reply: FastifyReply) => {
|
||||
handler: async () => {
|
||||
return await wishlist.getAll()
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue