fix error formatting

This commit is contained in:
snow flurry 2024-08-14 23:44:27 -07:00
parent 48bff395ca
commit 267b924d7f

View file

@ -63,7 +63,7 @@ impl Context {
.get_ssh_pubkeys(nzr_api::default_ctx())
.await
.context("RPC Error")?
.map_err(|e| anyhow::anyhow!("Couldn't get SSH keys"))?;
.map_err(|e| anyhow::anyhow!("Couldn't get SSH keys: {e}"))?;
Ok(ssh_keys)
}