Skip to content

Commit

Permalink
fix(sheet): life cycle steady (#1927)
Browse files Browse the repository at this point in the history
  • Loading branch information
DR-Univer committed Apr 16, 2024
1 parent ac17c69 commit fbabfaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/controllers/ui/ui-desktop.controller.tsx
Expand Up @@ -75,7 +75,7 @@ export class DesktopUIController extends Disposable implements IDesktopUIControl
const engine = this._renderManagerService.getFirst()?.engine;
engine?.setContainer(canvasElement);
this._lifecycleService.stage = LifecycleStages.Rendered;
setTimeout(() => this._lifecycleService.stage = LifecycleStages.Rendered, STEADY_TIMEOUT);
setTimeout(() => this._lifecycleService.stage = LifecycleStages.Steady, STEADY_TIMEOUT);
});
})
);
Expand Down

0 comments on commit fbabfaa

Please sign in to comment.