Skip to content

Commit

Permalink
chore: type argument missing
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Kolstad committed Mar 26, 2021
1 parent 205ad92 commit f191d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/services/tag-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default class TagService {
return this.tagStore.getAll();
}

async getTagsByType(type): Promise<ITag[]> {
async getTagsByType(type: string): Promise<ITag[]> {
return this.tagStore.getTagsByType(type);
}

Expand Down

0 comments on commit f191d76

Please sign in to comment.