applyService.processAll('accept', props.resource.uri)}
content={localize('aiNative.inlineDiff.acceptAll')}
id='inline-diff-manager-accept-all'
/>
applyService.processAll('reject', props.resource.uri)}
content={localize('aiNative.inlineDiff.rejectAll')}
id='inline-diff-manager-reject-all'
/>
handleSiblingChange('up')}
/>
handleSiblingChange('down')}
/>
handleSiblingFile('up')}
disabled={filePaths.length === 0 || filePaths[0] === currentFilePath}
content={localize('aiNative.inlineDiff.left') + fileTip}
id='inline-diff-manager-left'
/>
handleSiblingFile('down')}
disabled={filePaths.length === 0 || filePaths[filePaths.length - 1] === currentFilePath}
content={localize('aiNative.inlineDiff.right') + fileTip}
id='inline-diff-manager-right'
/>
);
};