Fixing linting

This commit is contained in:
David Négrier 2021-11-24 15:29:12 +01:00
parent d3bd99b5ee
commit 2cbf5b56af
12 changed files with 164 additions and 175 deletions

View file

@ -57,7 +57,7 @@ export class WorkadventureNavigationCommands extends IframeApiContribution<Worka
async getCoWebSites(): Promise<CoWebsite[]> {
const result = await queryWorkadventure({
type: "getCoWebsites",
data: undefined
data: undefined,
});
return result.map((cowebsiteEvent) => new CoWebsite(cowebsiteEvent.id, cowebsiteEvent.position));
}