From cc9637e0fe770ee37898c5978ae90a312c877dfa Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Thu, 22 Aug 2024 12:16:40 -0400 Subject: [PATCH] Minor fixes --- webview-ui/src/components/ApiOptions.tsx | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/webview-ui/src/components/ApiOptions.tsx b/webview-ui/src/components/ApiOptions.tsx index 76f0f7c..e0c7a65 100644 --- a/webview-ui/src/components/ApiOptions.tsx +++ b/webview-ui/src/components/ApiOptions.tsx @@ -143,14 +143,24 @@ const ApiOptions: React.FC = ({ <> {maestroUser ? (
-

- Signed in as: - {maestroUser.email} -

-
+ + Signed in as {maestroUser.email} + +
vscode.postMessage({ type: "didClickMaestroSignOut" })}> @@ -361,6 +371,8 @@ export function normalizeApiConfiguration(apiConfiguration?: ApiConfiguration) { return getProviderData(bedrockModels, bedrockDefaultModelId) case "maestro": return getProviderData(maestroModels, maestroDefaultModelId) + default: + return getProviderData(anthropicModels, anthropicDefaultModelId) } }