diff --git a/src/db/seeds/complaints.seed.ts b/src/db/seeds/complaints.seed.ts
index 04640e89fc577f9c01490657fd78a316609f3cce..2cc2248f6ca19c26ac02a73fe103c3370b6ce8bd 100644
--- a/src/db/seeds/complaints.seed.ts
+++ b/src/db/seeds/complaints.seed.ts
@@ -9,7 +9,7 @@ export default async function seed(db: db){
 
 const complaintData: ComplaintInput[] = [
     {
-        state: 'under_review',
+        state: 'complained',
         description: 'I do not like this resource',
         denouncer_id: 1,
         resource_id: 1,
@@ -21,7 +21,7 @@ const complaintData: ComplaintInput[] = [
         q4: false,
     },
     {
-        state: 'under_review',
+        state: 'complained',
         description: 'I do not like this resource',
         denouncer_id: 1,
         resource_id: 1,
@@ -33,7 +33,7 @@ const complaintData: ComplaintInput[] = [
         q4: false,
     },
     {
-        state: 'under_review',
+        state: 'complained',
         description: 'I do not like this resource',
         denouncer_id: 1,
         resource_id: 1,
@@ -44,4 +44,4 @@ const complaintData: ComplaintInput[] = [
         q3: false,
         q4: false,
     },
-]
\ No newline at end of file
+]