Fix ordering of loadshow dialog

This commit is contained in:
Matthew Stratford 2021-09-03 21:46:58 +01:00
parent bead964ebf
commit 9e09ffe3bb

View file

@ -36,9 +36,6 @@ export function LoadShowDialogue({ close }: { close: () => any }) {
});
}, [state]);
return (
<>
<ResultsPlaceholder state={state} />
{state !== "searching" && (
<>
<div
className="btn btn-outline-danger outline float-right"
@ -62,9 +59,9 @@ export function LoadShowDialogue({ close }: { close: () => any }) {
>
<FaCircleNotch size={15} /> Mark All Unplayed
</div>
<h2>Load Show</h2>
</>
)}
<ResultsPlaceholder state={state} />
<div className="loadshow-list">
{items.map((item, index) => (