Skip to content

Commit

Permalink
refactor: Update private template component to use number type for re…
Browse files Browse the repository at this point in the history
…size timeout
  • Loading branch information
yosvelquintero committed Jun 20, 2024
1 parent d80a534 commit b181a62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class RcPrivateTemplateComponent implements OnInit, OnDestroy {
clearTimeout(this.resizeTimeout);
this.resizeTimeout = setTimeout(() => {
this.isResizing = false;
}, 500); // Wait for 500ms after the resize event stops firing
}, 500) as unknown as number; // Wait for 500ms after the resize event stops firing
}

menuTopLinks = [
Expand Down

0 comments on commit b181a62

Please sign in to comment.