From 6f0d269da0b19809702ab44778b5b7fb10f74306 Mon Sep 17 00:00:00 2001 From: Katja Lutz Date: Sat, 25 Jun 2022 00:58:34 +0200 Subject: [PATCH] feat: remove development positions from default state --- src/stores.ts | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) 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;