diff --git a/src/stores.ts b/src/stores.ts index b9595da..16173c7 100644 --- a/src/stores.ts +++ b/src/stores.ts @@ -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;