From 030d861ed50c46338dbab682170036be42c4b56f Mon Sep 17 00:00:00 2001 From: Benjamin Sutter Date: Fri, 22 May 2026 10:16:36 +0200 Subject: [PATCH] fix: restore WEIGHTING_KEYS import in WeightingEditor --- src/components/demand/WeightingEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/demand/WeightingEditor.tsx b/src/components/demand/WeightingEditor.tsx index 5cf1362..017178f 100644 --- a/src/components/demand/WeightingEditor.tsx +++ b/src/components/demand/WeightingEditor.tsx @@ -1,7 +1,7 @@ import { useState } from 'react' import { Box, Button, Card, Divider, Slider, Typography } from '@mui/material' import { RotateCcw } from 'lucide-react' -import { WEIGHTING_LABELS } from '../../domain/needBuilder' +import { WEIGHTING_KEYS, WEIGHTING_LABELS } from '../../domain/needBuilder' import type { WeightingKey } from '../../domain/needBuilder' import { weightingService } from '../../services/weightingService'