The wire row `artifacts.list` returns — no `code`, so the list stays cheap. * The preview is the exception: the gallery is what draws it.
| 36 | /** The wire row `artifacts.list` returns — no `code`, so the list stays cheap. |
| 37 | * The preview is the exception: the gallery is what draws it. */ |
| 38 | interface ArtifactSummary { |
| 39 | readonly id: ArtifactId; |
| 40 | readonly title: string; |
| 41 | readonly description: string | null; |
| 42 | readonly preview: ArtifactPreviewValue | null; |
| 43 | readonly updatedAt: number; |
| 44 | } |
| 45 | |
| 46 | const LoadingState = () => ( |
| 47 | <div className="flex items-center gap-2 py-8"> |
nothing calls this directly
no outgoing calls
no test coverage detected