diff options
| author | AAGaming <aagaming00@protonmail.com> | 2022-05-30 14:26:54 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-30 20:26:54 +0200 |
| commit | 007860f8f771a7ee62b1c384fbe4f741528a75d5 (patch) | |
| tree | e901ec893500f0531ebb66b5066b2003086570b3 /frontend/src/components/PluginView.tsx | |
| parent | 44776b393e984e5968c8b092fade56644c39a4a7 (diff) | |
| download | decky-loader-007860f8f771a7ee62b1c384fbe4f741528a75d5.tar.gz decky-loader-007860f8f771a7ee62b1c384fbe4f741528a75d5.zip | |
react: Add Router hook & fix typescript issues (#68)
* add rollup watch command, add pnpm lockfile
* wait for react
* add WIP patcher, window hook, and webpack
* fix typescript, fix React, lint, add pnpm to gitignore
* actually fix react
* show frontend JS errors in console
* cleanup
* Add Router hook
* Remove console.log
* Expose routerHook in createPluginAPI
Co-authored-by: Jonas Dellinger <jonas@dellinger.dev>
Diffstat (limited to 'frontend/src/components/PluginView.tsx')
| -rw-r--r-- | frontend/src/components/PluginView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx index 65288c05..4bc159e2 100644 --- a/frontend/src/components/PluginView.tsx +++ b/frontend/src/components/PluginView.tsx @@ -9,7 +9,7 @@ const PluginView: VFC = () => { if (activePlugin) { return ( - <div style={{height: '100%'}}> + <div style={{ height: '100%' }}> <div style={{ position: 'absolute', top: '3px', left: '16px', zIndex: 20 }}> <DialogButton style={{ minWidth: 0, padding: '10px 12px' }} onClick={closeActivePlugin}> <FaArrowLeft style={{ display: 'block' }} /> |
