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) } }