Align the right curly brace with the public keyword

This commit is contained in:
Yeoh Joer
2021-04-27 19:46:49 +08:00
parent a340bce5c2
commit 098ee45360

View File

@ -107,8 +107,8 @@ class ErrorHandler {
public async handleError(error: Error, responseStream: Response): Promise<void> {
await logger.logError(error);
await fireMonitoringMetric(error);
await crashIfUntrustedErrorOrSendResponse(error, responseStream);
};
await crashIfUntrustedErrorOrSendResponse(error, responseStream);
};
}
export const handler = new ErrorHandler();