feat(core): add more notification types (#11156)

This commit is contained in:
EYHN
2025-03-25 14:51:08 +08:00
committed by GitHub
parent a2e3d318ba
commit 36eb4991c9
16 changed files with 510 additions and 57 deletions

View File

@@ -71,7 +71,8 @@ export const FrameworkScope = ({
const nextStack = useMemo(() => {
if (!scope) return provider;
return new FrameworkStackProvider([provider, scope.framework]);
// make sure the stack order is inside to outside
return new FrameworkStackProvider([scope.framework, provider]);
}, [scope, provider]);
return (