Skip to content

Commit 37491d2

Browse files
committed
fix: tags is an array of strings
1 parent 1a0539e commit 37491d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/challenge.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export interface BaseChallenge {
33
name: string;
44
description: string;
55
category: string;
6-
tags: string;
6+
tags: Array<string>;
77
visible: boolean;
88
}
99

0 commit comments

Comments
 (0)