fix(client/skills): make skill level optional

This commit is contained in:
Amruth Pillai
2022-03-14 10:26:57 +01:00
parent 4dc83c1d7f
commit 02e396bfdb
2 changed files with 2 additions and 3 deletions

View File

@ -61,7 +61,7 @@ export type Publication = {
export type Skill = {
id?: string;
name: string;
level: string;
level?: string;
levelNum: number;
keywords?: string[];
};