We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dbc319 commit c391bb7Copy full SHA for c391bb7
.changeset/rude-schools-brush.md
@@ -0,0 +1,5 @@
1
+---
2
+"@stackflow/plugin-basic-ui": patch
3
4
+
5
+Fix a bug that entrance transition is not applied.
extensions/plugin-basic-ui/src/components/AppScreen.tsx
@@ -234,7 +234,16 @@ const AppScreen: React.FC<AppScreenProps> = ({
234
>
235
<div
236
ref={appScreenRef}
237
- className={clsx(css.appScreen({ transitionState }), className)}
+ className={clsx(
238
+ css.appScreen({
239
+ transitionState:
240
+ transitionState === "enter-done" ||
241
+ transitionState === "exit-done"
242
+ ? transitionState
243
+ : lazyTransitionState,
244
+ }),
245
+ className,
246
+ )}
247
style={assignInlineVars(
248
compactMap({
249
[globalVars.backgroundColor]: backgroundColor,
0 commit comments