renewCerts: do not pass domain

This commit is contained in:
Girish Ramakrishnan
2021-03-13 21:52:37 -08:00
parent 4dffce0b71
commit 168636e493
2 changed files with 3 additions and 3 deletions

View File

@@ -425,7 +425,7 @@ angular.module('Application').controller('DomainsController', ['$scope', '$locat
$scope.renewCerts.message = '';
$scope.renewCerts.errorMessage = '';
Client.renewCerts(null /* all domains */, function (error, taskId) {
Client.renewCerts(function (error, taskId) {
if (error) {
console.error(error);
$scope.renewCerts.errorMessage = error.message;