🎨 Format codebase

This commit is contained in:
ajnart
2023-03-03 12:40:49 +09:00
parent 68cea4b6a8
commit 457e9cf2bd
14 changed files with 86 additions and 53 deletions

View File

@@ -61,7 +61,9 @@ const Get = async (request: NextApiRequest, response: NextApiResponse) => {
const responseBody = { apps: data, failedApps: failedClients } as NormalizedDownloadQueueResponse;
if (failedClients.length > 0) {
Consola.warn(`${failedClients.length} download clients failed. Please check your configuration and the above log`);
Consola.warn(
`${failedClients.length} download clients failed. Please check your configuration and the above log`
);
}
return response.status(200).json(responseBody);