Skip to content

Commit

Permalink
fix(cli): missing await in authentication decorator (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
olamothe authored Mar 25, 2021
1 parent 50f699c commit f54e27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/lib/decorators/authenticationRequired.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function AuthenticationRequired() {
);
}

originalRunCommand.apply(this);
await originalRunCommand.apply(this);
};
};
}

0 comments on commit f54e27c

Please sign in to comment.