From 0b9e3553a75d92ea9a5f529499e4167b6542697e Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Thu, 9 Apr 2026 12:31:18 -0700 Subject: [PATCH] fix(frontend): remove unused removeConstraint function (TS6133) --- frontend/src/components/RecipesView.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/frontend/src/components/RecipesView.vue b/frontend/src/components/RecipesView.vue index 44cab41..e5d7700 100644 --- a/frontend/src/components/RecipesView.vue +++ b/frontend/src/components/RecipesView.vue @@ -755,10 +755,6 @@ function addConstraint(value: string) { constraintInput.value = '' } -function removeConstraint(tag: string) { - recipesStore.constraints = recipesStore.constraints.filter((c) => c !== tag) -} - function onConstraintKey(e: KeyboardEvent) { if (e.key === 'Enter' || e.key === ',') { e.preventDefault()