mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-06-03 06:35:42 -05:00
Add 3.0 stages to planner Closes #1287
This commit is contained in:
parent
867f8f6bbd
commit
fbac8c0d31
|
|
@ -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}`)}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user