feat: remove development positions from default state

master
Katja Lutz 2 years ago
parent 16f7afcff5
commit 6f0d269da0

@ -105,34 +105,7 @@ export const createStore = () =>
defaultItemPrice: 0,
agileRiskFactor: 0.7,
agileHoursPerStoryPoint: 4,
positions: [
{
id: 0,
name: "Entwicklung",
enabled: true,
quantity: 0,
agilePointsMin: 8,
agilePointsMax: 13,
itemPrice: 80,
type: POSITION_TYPE_AGILE,
},
{
id: 1,
name: "Kaffee Trinken",
enabled: true,
quantity: 2,
itemPrice: 160,
type: POSITION_TYPE_QUANTITY,
},
{
id: 2,
name: "Pizza Essen",
enabled: true,
quantity: 1,
itemPrice: 280,
type: POSITION_TYPE_QUANTITY,
},
] as Position[],
positions: [] as Position[],
});
export type Store = ReturnType<typeof createStore>;

Loading…
Cancel
Save