- upgrade react-resizable-panels to latest version

- update translations
- remove cypress
- add await to all return blocks
This commit is contained in:
Amruth Pillai
2023-11-19 09:52:55 +01:00
parent 9c4db2956b
commit 8b217dfcfa
95 changed files with 4162 additions and 4213 deletions

View File

@ -32,9 +32,9 @@ export class PrinterService {
this.browserURL = `${chromeUrl}?token=${chromeToken}`;
}
private getBrowser() {
private async getBrowser() {
try {
return connect({ browserWSEndpoint: this.browserURL });
return await connect({ browserWSEndpoint: this.browserURL });
} catch (error) {
throw new InternalServerErrorException(ErrorMessage.InvalidBrowserConnection, error.message);
}