fix(frontend): remove unused removeConstraint function (TS6133)

This commit is contained in:
pyr0ball 2026-04-09 12:31:18 -07:00
parent 6da86dd0a7
commit 0b9e3553a7

View file

@ -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()