21 lines
446 B
TypeScript
21 lines
446 B
TypeScript
import { Command } from '@commands'
|
|
import { Bug } from '@components/Bug'
|
|
import * as React from 'react'
|
|
import { PRODUCT_NAME } from '@constants/product'
|
|
|
|
const bug = {
|
|
type: 'local-jsx',
|
|
name: 'bug',
|
|
description: `Submit feedback about ${PRODUCT_NAME}`,
|
|
isEnabled: true,
|
|
isHidden: false,
|
|
async call(onDone) {
|
|
return <Bug onDone={onDone} />
|
|
},
|
|
userFacingName() {
|
|
return 'bug'
|
|
},
|
|
} satisfies Command
|
|
|
|
export default bug
|