-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix native base warning and various other bugs (#100)
Co-authored-by: Josiah S <[email protected]>
- Loading branch information
1 parent
ac9f4ec
commit c184ba7
Showing
12 changed files
with
36 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/frontend/Finding-Neno/patches/native-base+3.4.28.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/node_modules/native-base/src/core/NativeBaseProvider.tsx b/node_modules/native-base/src/core/NativeBaseProvider.tsx | ||
index 43b4bd1..dd1329c 100644 | ||
--- a/node_modules/native-base/src/core/NativeBaseProvider.tsx | ||
+++ b/node_modules/native-base/src/core/NativeBaseProvider.tsx | ||
@@ -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'; | ||
@@ -94,7 +93,7 @@ const NativeBaseProvider = (props: NativeBaseProviderProps) => { | ||
<OverlayProvider isSSR> | ||
<ToastProvider> | ||
<InitializeToastRef /> | ||
- <SSRProvider>{children}</SSRProvider> | ||
+ {children} | ||
</ToastProvider> | ||
</OverlayProvider> | ||
</HybridProvider> |