From ed1e347ade2cd3d7d108061702d8f55beb021bdd Mon Sep 17 00:00:00 2001 From: "Kalle (Sendou)" <38327916+Sendouc@users.noreply.github.com> Date: Thu, 10 Dec 2020 14:27:04 +0200 Subject: [PATCH] fix invalid prop name on delete build button --- components/u/BuildModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/u/BuildModal.tsx b/components/u/BuildModal.tsx index 1292d6ad8..f3ab20825 100644 --- a/components/u/BuildModal.tsx +++ b/components/u/BuildModal.tsx @@ -157,7 +157,7 @@ const BuildModal: React.FC = ({ onClose, build }) => { variant="outline" color="red.500" mb={6} - loading={deleting} + isLoading={deleting} onClick={async () => { if (window.confirm(t`Delete the build?`)) await onDelete(); }}