Removed universal box and new salary box from Add Milestone - handled by Impacts now

This commit is contained in:
Josh 2025-04-29 16:01:59 +00:00
parent 2a268a0c6e
commit fc14b50b0a
2 changed files with 1 additions and 23 deletions

View File

@ -821,29 +821,7 @@ export default function ScenarioContainer({
progress: parseInt(e.target.value || '0', 10)
}))
}
/>
<div style={{ marginTop: '0.5rem' }}>
<label>
<input
type="checkbox"
checked={!!newMilestone.isUniversal}
onChange={(e) =>
setNewMilestone((prev) => ({
...prev,
isUniversal: e.target.checked ? 1 : 0
}))
}
/>
{' '}Universal (all scenarios)?
</label>
</div>
<label>New Salary (if financial): </label>
<input
type="number"
value={newMilestone.newSalary}
onChange={(e) => setNewMilestone({ ...newMilestone, newSalary: e.target.value })}
/>
/>
{/* Impacts sub-form */}
<div style={{ border: '1px solid #ccc', padding: '1rem', marginTop: '1rem' }}>

Binary file not shown.