+
+ LLM API Keys
+
+
+
+
+
+ {apiKeys.map((apiKey) => (
+
+
+ {apiKey.name}
+ |
+
+ {apiKey.provider}
+ |
+
+ {apiKey.token}
+ |
+
+ {apiKey.createdAt.toDateString()}
+ |
+
+
+ {apiKey.lastUsedAt?.toISOString() || 'never'}
+
+ |
+
+ {findUser(apiKey.authorId)?.name}
+ |
+
+
+ |
+
+ ))}
+
+
+
+
+ )
+}
diff --git a/packages/web-ui/src/sections/Settings/WorkspaceName/index.tsx b/packages/web-ui/src/sections/Settings/WorkspaceName/index.tsx
index ce69a3bf5..1ad407efe 100644
--- a/packages/web-ui/src/sections/Settings/WorkspaceName/index.tsx
+++ b/packages/web-ui/src/sections/Settings/WorkspaceName/index.tsx
@@ -10,7 +10,7 @@ export default function WorkspaceName({
update,
}: {
workspace: SessionWorkspace
- update: (payload: { name: string }) => Promise