IO-3076 Initial usage reports design.

This commit is contained in:
Patrick Fic
2025-01-09 11:22:08 -08:00
parent 7a88dd1aae
commit d6fbf02092
6 changed files with 163 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ exports.taskHandler = async (req, res) => {
return res.status(200).send(csv);
} catch (error) {
res.status(500).json({ error: error.message, stack: error.stackTrace });
res.status(500).json({ error: error.message, stack: error.stack });
}
};