Skip to content

Commit 1ef9d3c

Browse files
authored
refactor: update context identity output (#1080)
1 parent a2f0e4a commit 1ef9d3c

File tree

1 file changed

+3
-1
lines changed
  • crates/meroctl/src/cli/context

1 file changed

+3
-1
lines changed

crates/meroctl/src/cli/context/get.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ impl Report for GetContextStorageResponse {
7171

7272
impl Report for GetContextIdentitiesResponse {
7373
fn report(&self) {
74-
println!("Identities: {self:?}");
74+
for identity in &self.data.identities {
75+
println!("{}", identity);
76+
}
7577
}
7678
}
7779

0 commit comments

Comments
 (0)