Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
hejny committed Apr 12, 2024
1 parent f30f6af commit e6d42be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mock/MockedWebgptSdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ export class MockedWebgptSdk implements WebgptSdk {

public recoverAssignmentMaking(id: TaskId): MakeAssignmentTask {
notUsing(id);
return this.makeAssignment({ idea: 'Some previous idea' });
return this.makeAssignment({ idea: 'Some previous idea', language: 'en' });
}

public recoverWebsiteMaking(id: TaskId): MakeWebsiteTask {
notUsing(id);
return this.makeWebsite({ assignment: 'Some previous assignment' });
return this.makeWebsite({ assignment: 'Some previous assignment', language: 'en' });
}
}

0 comments on commit e6d42be

Please # to comment.