We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3377769 commit fa22569Copy full SHA for fa22569
src/apps/copilots/src/pages/copilot-requests/index.tsx
@@ -200,7 +200,7 @@ const CopilotRequestsPage: FC = () => {
200
},
201
{
202
label: 'Type',
203
- propertyName: 'type',
+ propertyName: 'projectType',
204
type: 'text',
205
206
@@ -232,7 +232,7 @@ const CopilotRequestsPage: FC = () => {
232
const tableData = useMemo(() => requests.map(request => ({
233
...request,
234
projectName: request.project?.name,
235
- type: ProjectTypeLabels[request.projectType] ?? '',
+ projectType: ProjectTypeLabels[request.projectType] ?? '',
236
})), [requests])
237
238
function loadMore(): void {
0 commit comments