Skip to content

Commit

Permalink
removed authentication for remove command
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithad0703 committed Sep 4, 2024
1 parent 8af316e commit e99e9f9
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ export default class RateLimitRemoveCommand extends Command {
static examples = ['$ csdx config:remove:rate-limit --org <<org_uid>>'];
async run() {
try {
if (!isAuthenticated()) {
const err = { errorMessage: 'You are not logged in. Please login with command $ csdx auth:login' };
cliux.print(err.errorMessage, { color: 'red' });
}
const { flags } = await this.parse(RateLimitRemoveCommand);
let { org } = flags;
if (!org) {
Expand Down

0 comments on commit e99e9f9

Please sign in to comment.