diff options
| author | AAGaming <aagaming@riseup.net> | 2024-06-27 00:21:32 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-06-27 00:21:32 -0400 |
| commit | 0cfb41755a3cf5bc39cd65e45e02418c245fa793 (patch) | |
| tree | 9bab88d926fbcf218b10794161e4c4c411e691a8 /frontend/src/components/PluginView.tsx | |
| parent | 2f8b5df0077bae996c1e9c5fa571ebf538260597 (diff) | |
| download | decky-loader-0cfb41755a3cf5bc39cd65e45e02418c245fa793.tar.gz decky-loader-0cfb41755a3cf5bc39cd65e45e02418c245fa793.zip | |
lint
Diffstat (limited to 'frontend/src/components/PluginView.tsx')
| -rw-r--r-- | frontend/src/components/PluginView.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx index 07367bc3..19afbca5 100644 --- a/frontend/src/components/PluginView.tsx +++ b/frontend/src/components/PluginView.tsx @@ -29,9 +29,7 @@ const PluginView: FC = () => { <Focusable onCancelButton={closeActivePlugin}> <TitleView /> <div style={{ height: '100%', paddingTop: '16px' }}> - <ErrorBoundary> - {(visible || activePlugin.alwaysRender) && activePlugin.content} - </ErrorBoundary> + <ErrorBoundary>{(visible || activePlugin.alwaysRender) && activePlugin.content}</ErrorBoundary> </div> </Focusable> ); |
