diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-03 19:09:30 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-03 19:09:30 +0200 |
commit | e6cadc73edf20b4f959e8811cf7944d57fe6a5da (patch) | |
tree | 038698dd51607edd342fc056eace73926b6690f0 /src | |
parent | 88d010e48cc24220cf8fdd375a6369a3f741d5d1 (diff) |
Fix typo
Diffstat (limited to 'src')
-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)) } } } |