mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-12 05:00:50 +00:00
Resolves a conflict in src/App/App.js between the new GamepadProvider
(landed via #882 on development) and FullscreenProvider on this branch.
Both wrap parts of the app tree at the same point.
Resolution: nest as <GamepadProvider> > <ShortcutsProvider> >
<FullscreenProvider>. FullscreenProvider stays innermost so it remains
inside ShortcutsProvider — required for the onShortcut('fullscreen', ...)
subscription added in
|
||
|---|---|---|
| .. | ||
| ErrorDialog | ||
| GamepadModal | ||
| ShortcutsModal | ||
| UpdaterBanner | ||
| App.js | ||
| DeepLinkHandler.js | ||
| index.js | ||
| routerViewsConfig.js | ||
| SearchParamsHandler.js | ||
| ServicesToaster.js | ||
| styles.less | ||
| withProtectedRoutes.js | ||