Skip to content

Commit

Permalink
Update DataTab.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinwloring1988 committed Dec 17, 2024
1 parent a9b15e5 commit 1a0ede6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/settings/data/DataTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export default function DataTab() {
disabled={isDeleting}
className={classNames(
'px-4 py-2 bg-bolt-elements-button-danger-background hover:bg-bolt-elements-button-danger-backgroundHover text-bolt-elements-button-danger-text rounded-lg transition-colors',
isDeleting && 'opacity-50 cursor-not-allowed'
isDeleting ? 'opacity-50 cursor-not-allowed' : ''
)}
>
{isDeleting ? 'Deleting...' : 'Delete All Chats'}
Expand Down

0 comments on commit 1a0ede6

Please sign in to comment.