sync: update from private repo (dfadcd5f)
CI / build-and-test (push) Has been cancelled

This commit is contained in:
oss-sync
2026-06-23 06:38:48 +00:00
parent 6a2f2cc736
commit 29ccaf1e92
377 changed files with 31028 additions and 8994 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
import { SkillsForm } from '../settings/SkillsForm';
export function SkillsPanel() {
export function SkillsPanel({ spaceId }: { spaceId?: string } = {}) {
return (
<div className="h-full overflow-y-auto">
<div className="max-w-4xl mx-auto px-6 py-8">
<SkillsForm />
<SkillsForm spaceId={spaceId} />
</div>
</div>
);