Skip to content

Commit cbb5f74

Browse files
authored
include '.' in envvar message (#9835)
Since `.` is used in other parts of this dialog. <img width="615" height="419" alt="Screenshot 2025-10-07 at 3 25 25 PM" src="https://github.com/user-attachments/assets/c0965b04-1298-4a12-b98a-ebca45bc9643" />
1 parent 44a1c52 commit cbb5f74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/positronAssistant/browser/components/languageModelConfigComponent.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ const ExternalAPIKey = (props: { provider: string, envKeyName?: { key: string; s
248248
<div className='language-model-external-api-key'>
249249
{
250250
props.envKeyName && props.envKeyName.signedIn ?
251-
<p>{localize('positron.languageModelConfig.externalApiInUse', "The {0} environment variable is currently in use", props.envKeyName?.key)}</p>
251+
<p>{localize('positron.languageModelConfig.externalApiInUse', "The {0} environment variable is currently in use.", props.envKeyName?.key)}</p>
252252
:
253-
<p>{localize('positron.languageModelConfig.externalApiSetup', "You can also assign the {0} environment variable and restart Positron", props.envKeyName.key)}</p>
253+
<p>{localize('positron.languageModelConfig.externalApiSetup', "You can also assign the {0} environment variable and restart Positron.", props.envKeyName.key)}</p>
254254
}
255255
</div> : null
256256
);

0 commit comments

Comments
 (0)