refactor: eslint and prettier conflict will be resolved and formatted

This commit is contained in:
Enes Köksal
2026-04-23 17:05:43 +03:00
parent 385b61f29b
commit 3cfea40fbd
219 changed files with 16638 additions and 13663 deletions
+5 -1
View File
@@ -64,7 +64,11 @@ export function DeleteFeedbackButton({
<AlertDialog>
<AlertDialogTrigger asChild>
<Button variant={variant} size={size} disabled={isDeleting}>
{isDeleting ? <Loader2 className="mr-1.5 h-4 w-4 animate-spin" /> : <Trash2 className="mr-1.5 h-4 w-4" />}
{isDeleting ? (
<Loader2 className="mr-1.5 h-4 w-4 animate-spin" />
) : (
<Trash2 className="mr-1.5 h-4 w-4" />
)}
Delete
</Button>
</AlertDialogTrigger>