diff options
-rw-r--r-- | src/graphql/types/alert.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graphql/types/alert.rs b/src/graphql/types/alert.rs index 9e2add5..ab82c2e 100644 --- a/src/graphql/types/alert.rs +++ b/src/graphql/types/alert.rs @@ -158,7 +158,7 @@ pub async fn get_alerts<'ctx>( .unwrap(), }; - let positions: Vec<Alert> = rows + let alerts: Vec<Alert> = rows .iter() .map(|row| Alert { id: row.get("id"), @@ -171,7 +171,7 @@ pub async fn get_alerts<'ctx>( }) .collect(); - Ok(Some(positions)) + Ok(Some(alerts)) } } } |