mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
some lint
This commit is contained in:
parent
5646413b59
commit
cf898299e4
1 changed files with 5 additions and 5 deletions
|
|
@ -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) =>
|
||||
|
|
|
|||
Loading…
Reference in a new issue