mirror of
https://github.com/9technologygroup/patchmon.net.git
synced 2025-11-09 08:26:16 +00:00
fix(backend): lint errors
This commit is contained in:
@@ -218,7 +218,7 @@ router.put(
|
||||
updated_at: new Date(),
|
||||
}));
|
||||
|
||||
const createdPreferences = await prisma.dashboard_preferences.createMany({
|
||||
await prisma.dashboard_preferences.createMany({
|
||||
data: newPreferences,
|
||||
});
|
||||
|
||||
@@ -234,7 +234,7 @@ router.put(
|
||||
);
|
||||
|
||||
// Get default dashboard card configuration
|
||||
router.get("/defaults", authenticateToken, async (req, res) => {
|
||||
router.get("/defaults", authenticateToken, async (_req, res) => {
|
||||
try {
|
||||
// This provides a comprehensive dashboard view for all new users
|
||||
const defaultCards = [
|
||||
|
||||
Reference in New Issue
Block a user