Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"prettier --write"
]
},
"version": "3.4.28",
"version": "3.4.29",
"license": "MIT",
"private": false,
"main": "lib/commonjs/index",
Expand Down
3 changes: 1 addition & 2 deletions src/core/NativeBaseProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {
Metrics,
initialWindowMetrics as defaultInitialWindowMetrics,
} from 'react-native-safe-area-context';
import { SSRProvider } from '@react-native-aria/utils';
import { theme as defaultTheme, ITheme } from './../theme';
import type { IColorModeProviderProps } from './color-mode';
import HybridProvider from './hybrid-overlay/HybridProvider';
Expand Down Expand Up @@ -94,7 +93,7 @@ const NativeBaseProvider = (props: NativeBaseProviderProps) => {
<OverlayProvider isSSR>
<ToastProvider>
<InitializeToastRef />
<SSRProvider>{children}</SSRProvider>
{children}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

might have to check react, react-native version, otherwise the old versions can not support

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

very good

</ToastProvider>
</OverlayProvider>
</HybridProvider>
Expand Down