diff --git a/packages/bolt/app/components/Header.tsx b/packages/bolt/app/components/Header.tsx index a51eed6..061b645 100644 --- a/packages/bolt/app/components/Header.tsx +++ b/packages/bolt/app/components/Header.tsx @@ -2,7 +2,7 @@ import { IconButton } from './ui/IconButton'; export function Header() { return ( -
+
Bolt
diff --git a/packages/bolt/app/components/chat/Artifact.tsx b/packages/bolt/app/components/chat/Artifact.tsx index 525b074..188e4db 100644 --- a/packages/bolt/app/components/chat/Artifact.tsx +++ b/packages/bolt/app/components/chat/Artifact.tsx @@ -3,17 +3,22 @@ import { workspaceStore } from '~/lib/stores/workspace'; interface ArtifactProps { messageId: string; - onClick?: () => void; } -export function Artifact({ messageId, onClick }: ArtifactProps) { +export function Artifact({ messageId }: ArtifactProps) { const artifacts = useStore(workspaceStore.artifacts); const artifact = artifacts[messageId]; return ( -