fix invalid prop name on delete build button

This commit is contained in:
Kalle (Sendou)
2020-12-10 14:27:04 +02:00
parent 92e6fe99fd
commit ed1e347ade

View File

@@ -157,7 +157,7 @@ const BuildModal: React.FC<Props> = ({ onClose, build }) => {
variant="outline"
color="red.500"
mb={6}
loading={deleting}
isLoading={deleting}
onClick={async () => {
if (window.confirm(t`Delete the build?`)) await onDelete();
}}