diff --git a/android/build/reports/problems/problems-report.html b/android/build/reports/problems/problems-report.html new file mode 100644 index 0000000..57fb1aa --- /dev/null +++ b/android/build/reports/problems/problems-report.html @@ -0,0 +1,663 @@ + + + + + + + + + + + + + Gradle Configuration Cache + + + +
+ +
+ Loading... +
+ + + + + + diff --git a/backend/src/entity/ShoppingList.ts b/backend/src/entity/ShoppingList.ts index 5952da8..c95a3bc 100644 --- a/backend/src/entity/ShoppingList.ts +++ b/backend/src/entity/ShoppingList.ts @@ -13,7 +13,7 @@ export class ShoppingList { @ManyToOne(() => User, (user) => user.id) owner!: User; - @OneToMany(() => ShoppingItem, (item) => item.list) + @OneToMany(() => ShoppingItem, (item: ShoppingItem) => item.list) items!: ShoppingItem[]; @CreateDateColumn()