From 9ff60c26817065527d208ec2b092715df5b437c8 Mon Sep 17 00:00:00 2001 From: Gabriel Sabanai Date: Sun, 26 May 2024 17:27:13 -0300 Subject: [PATCH] feat: fix lint error --- src/config/database.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/database.js b/src/config/database.js index 1a8b26fa..4eb074fa 100644 --- a/src/config/database.js +++ b/src/config/database.js @@ -22,8 +22,8 @@ const databaseConnect = async () => { if (envType === 'development') { await UserSeed(); await HelpSeed(); - // await NotificationSeed(); - // await BadgeSeed(); + await NotificationSeed(); + await BadgeSeed(); } } catch (err) { console.log('Não foi possível inicicializar corretamente a base de dados!');