This commit is contained in:
Charles Bochet
2023-08-09 14:11:49 -07:00
parent 4a388b8ed5
commit b49c857dc5
3 changed files with 5 additions and 7 deletions

View File

@ -104,7 +104,9 @@ export class EnvironmentService {
}
getSupportDriver(): string {
return this.configService.get<string>('SUPPORT_DRIVER') ?? SupportDriver.None;
return (
this.configService.get<string>('SUPPORT_DRIVER') ?? SupportDriver.None
);
}
getSupportFrontChatId(): string | undefined {