mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-05 06:08:36 -05:00
When opening plex Oauth window, open an empty page then redirect to plex oauth (#127)
* feat(frontend): custom toast * refactor(frontend): move toast width styling to globals * feat(frontend): add loading spinner for browser popup
This commit is contained in:
12
src/pages/login/plex/loading.tsx
Normal file
12
src/pages/login/plex/loading.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import LoadingSpinner from '../../../components/Common/LoadingSpinner';
|
||||
|
||||
const PlexLoading: React.FC = () => {
|
||||
return (
|
||||
<div>
|
||||
<LoadingSpinner />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default PlexLoading;
|
||||
Reference in New Issue
Block a user