Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW: Fix Allowed Display to show "delegates" not "allowed"
Fintan Halpenny committed 22 days ago
commit efb78efd1658f34d9d9e639db38044c34dde434b
parent bb55b79bb986e6f0df0d83efd85260b78614a912
1 file changed +1 -1
modified crates/radicle/src/git/canonical/rules.rs
@@ -393,7 +393,7 @@ impl From<Did> for Allowed {
impl std::fmt::Display for Allowed {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
-
            Allowed::Delegates => f.write_str("\"allowed\""),
+
            Allowed::Delegates => f.write_str("\"delegates\""),
            Allowed::Set(dids) => {
                let dids = dids
                    .iter()