style: remove unnecessary format

This commit is contained in:
sychic
2026-06-02 12:21:17 -04:00
parent 408e2847c6
commit ba37b4cefe
+2 -2
View File
@@ -447,14 +447,14 @@ impl From<DBNotification> for Notification {
name: "Accept".to_string(), name: "Accept".to_string(),
action_route: ( action_route: (
"POST".to_string(), "POST".to_string(),
format!(""), String::new(),
), ),
}, },
NotificationAction { NotificationAction {
name: "Deny".to_string(), name: "Deny".to_string(),
action_route: ( action_route: (
"POST".to_string(), "POST".to_string(),
format!(""), String::new(),
), ),
}, },
], ],