Skip to content

Commit

Permalink
chore: another missing type
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Kolstad committed Mar 26, 2021
1 parent f191d76 commit acc39fe
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 @@ -37,7 +37,7 @@ export default class TagService {
}
}

async validate(tag): Promise<ITag> {
async validate(tag: ITag): Promise<ITag> {
const data = (await tagSchema.validateAsync(tag)) as ITag;
await this.validateUnique(tag);
return data;
Expand Down

0 comments on commit acc39fe

Please sign in to comment.