some lint

This commit is contained in:
Hongbo Wu
2024-01-31 14:18:34 +08:00
parent 5646413b59
commit cf898299e4

View File

@ -8,6 +8,11 @@ export interface UpdateLabelsData {
userId: string
}
export interface UpdateHighlightData {
libraryItemId: string
userId: string
}
export const updateLabels = async (data: UpdateLabelsData) => {
return authTrx(
async (tx) =>
@ -29,11 +34,6 @@ export const updateLabels = async (data: UpdateLabelsData) => {
)
}
export interface UpdateHighlightData {
libraryItemId: string
userId: string
}
export const updateHighlight = async (data: UpdateHighlightData) => {
return authTrx(
async (tx) =>