mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-28 09:23:08 +08:00
feat: Implement team artifacts feature with tree navigation and file preview
This commit is contained in:
@@ -73,6 +73,7 @@ interface FixProgressData {
|
||||
* Fix Progress Carousel Component
|
||||
* Displays fix progress with polling and carousel navigation
|
||||
*/
|
||||
// @ts-expect-error Component is defined for future use when backend implements /api/fix-progress
|
||||
function FixProgressCarousel({ sessionId }: { sessionId: string }) {
|
||||
const { formatMessage } = useIntl();
|
||||
const [fixProgressData, setFixProgressData] = React.useState<FixProgressData | null>(null);
|
||||
|
||||
@@ -101,7 +101,7 @@ export function TeamPage() {
|
||||
|
||||
{/* Artifacts Tab */}
|
||||
{detailTab === 'artifacts' && (
|
||||
<TeamArtifacts messages={messages} />
|
||||
<TeamArtifacts teamName={selectedTeam} />
|
||||
)}
|
||||
|
||||
{/* Messages Tab */}
|
||||
|
||||
Reference in New Issue
Block a user