Skip to content

Commit a1e5ffc

Browse files
committed
fix(lint): add missing comma
1 parent a4edfbc commit a1e5ffc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/src/composables/useHooks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { createHooks } from 'hookable'
44
export const useHooks = createSharedComposable(() => {
55
return createHooks<{
66
'studio:draft:document:updated': (
7-
{ caller, selectItem }: { caller: string, selectItem?: boolean }
7+
{ caller, selectItem }: { caller: string, selectItem?: boolean },
88
) => void
99
'studio:draft:media:updated': (
10-
{ caller, selectItem }: { caller: string, selectItem?: boolean }
10+
{ caller, selectItem }: { caller: string, selectItem?: boolean },
1111
) => void
1212
}>()
1313
})

0 commit comments

Comments
 (0)