(feat:tools) reflect custom name on ui

This commit is contained in:
ManishMadan2882
2025-05-24 01:17:22 +05:30
parent 8e3f3d74d4
commit 14adfabf7e
3 changed files with 6 additions and 5 deletions

View File

@@ -288,7 +288,8 @@ export default function Tools() {
/>
<ConfirmationModal
message={t('settings.tools.deleteWarning', {
toolName: toolToDelete?.displayName || '',
toolName:
toolToDelete?.customName || toolToDelete?.displayName || '',
})}
modalState={deleteModalState}
setModalState={setDeleteModalState}