feat: decorating the backroom #604

Merged
Sainan merged 4 commits from tailorshop into main 2024-12-22 11:32:19 -08:00
Showing only changes of commit 6beb3c73e0 - Show all commits

View File

@ -13,7 +13,7 @@ export const shipDecorationsController: RequestHandler = async (req, res) => {
res.send(placedDecoration);
} catch (error: unknown) {
if (error instanceof Error) {
logger.error(`error in saveLoadoutController: ${error.message}`);
logger.error(`error in shipDecorationsController: ${error.message}`);
res.status(400).json({ error: error.message });
}
}