Skip to content

Commit 338c833

Browse files
committed
fixed error on mising element from data.ts
1 parent bc196d6 commit 338c833

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Website/stubs/Data.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// Used in github workflow to generate stubs for data
22
/// This file is a stub and should not be modified directly.
33

4-
import { GroupType, SolutionWarningType } from "@/lib/Types";
4+
import { GroupType, SolutionWarningType, SolutionComponentCollectionType } from "@/lib/Types";
55

66
export const LastSynched: Date = new Date();
77
export const Logo: string | null = null;
@@ -113,4 +113,6 @@ export let Groups: GroupType[] = [
113113
}
114114
];
115115

116-
export let SolutionWarnings: SolutionWarningType[] = [];
116+
export let SolutionWarnings: SolutionWarningType[] = [];
117+
118+
export let SolutionComponents: SolutionComponentCollectionType[] = [];

0 commit comments

Comments
 (0)