Skip to content

Commit

Permalink
fix: remove Member from itemLike type as it is not provided when quer…
Browse files Browse the repository at this point in the history
…ying the api (#225)
  • Loading branch information
spaenleh authored Oct 26, 2023
1 parent 7bf95c1 commit 60f1410
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/services/item-like/types.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { DiscriminatedItem, Member } from '../index';
import { DiscriminatedItem } from '../index';
import { UUID } from '@/types';

export type ItemLike = {
id: UUID;
item: DiscriminatedItem;
creator: Member;
createdAt: Date;
};

0 comments on commit 60f1410

Please sign in to comment.