Skip to content

Commit

Permalink
Convert event handler function to async
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusbsilva137 committed Dec 24, 2024
1 parent 3a5ede9 commit 4787671
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class LicenseService extends ServiceClassInternal implements ILicense {
constructor() {
super();

License.onValidateLicense((): void => {
License.onValidateLicense(async (): Promise<void> => {
if (!License.hasValidLicense()) {
return;
}
Expand Down

0 comments on commit 4787671

Please sign in to comment.