| 44 | } |
| 45 | |
| 46 | interface FormData { |
| 47 | type: string |
| 48 | productId: string |
| 49 | displayName: string |
| 50 | description: string |
| 51 | repoUrl: string |
| 52 | homepageUrl: string |
| 53 | tags: string |
| 54 | installation: string |
| 55 | } |
| 56 | |
| 57 | function SubmissionPreview({ data, authorName }: { data: FormData; authorName: string }) { |
| 58 | const typeInfo = EXTENSION_TYPE_LIST.find((t) => t.value === data.type) |
nothing calls this directly
no outgoing calls
no test coverage detected