Add 3.0 stages to planner Closes #1287

This commit is contained in:
Kalle 2023-03-06 23:27:23 +02:00
parent 867f8f6bbd
commit fbac8c0d31

View File

@ -297,8 +297,6 @@ function WeaponImageSelector({
);
}
const stageIdsWithBackgrounds = stageIds.slice(0, 14);
function StageBackgroundSelector({
onAddBackground,
}: {
@ -322,7 +320,7 @@ function StageBackgroundSelector({
onChange={(e) => setStageId(Number(e.target.value) as StageId)}
aria-label="Select stage"
>
{stageIdsWithBackgrounds.map((stageId) => {
{stageIds.map((stageId) => {
return (
<option value={stageId} key={stageId}>
{t(`game-misc:STAGE_${stageId}`)}