import { ipcRenderer } from 'electron'; import { SessionButtonShape, SessionButtonType } from '../../basic/SessionButton'; import { SessionSettingButtonItem, SessionSettingsTitleWithLink } from '../SessionSettingListItem'; export const SettingsCategoryHelp = () => { return ( <> { ipcRenderer.send('show-debug-log'); }} buttonShape={SessionButtonShape.Square} buttonType={SessionButtonType.Solid} buttonText={window.i18n('showDebugLog')} title={window.i18n('reportIssue')} description={window.i18n('shareBugDetails')} /> ); };