assistant: Fix configuration page showing incorrect Anthropic API key label (#17650)

Bennet Bo Fenner created

Release Notes:

- N/A

Change summary

crates/language_model/src/provider/anthropic.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/language_model/src/provider/anthropic.rs 🔗

@@ -695,7 +695,7 @@ impl Render for ConfigurationView {
                 )
                 .child(
                     Label::new(
-                        "You can also assign the {ANTHROPIC_API_KEY_VAR} environment variable and restart Zed.",
+                        format!("You can also assign the {ANTHROPIC_API_KEY_VAR} environment variable and restart Zed."),
                     )
                     .size(LabelSize::Small),
                 )