Skip to content

Commit

Permalink
fix: onQueueMoreScenes was adding new scenes at the start of the queue (
Browse files Browse the repository at this point in the history
  • Loading branch information
Sassy0P committed Jun 23, 2023
1 parent bcf9019 commit f440e06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/v2.5/src/components/Scenes/SceneDetails/Scene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ const SceneLoader: React.FC = () => {
const { scenes } = query.data.findScenes;

// append scenes to scene list
const newScenes = (scenes as QueuedScene[]).concat(queueScenes);
const newScenes = queueScenes.concat(scenes as QueuedScene[]);
setQueueScenes(newScenes);
// don't change queue start
}
Expand Down

0 comments on commit f440e06

Please sign in to comment.