fix: nil-close bug, stale docs, dead code, and tracked binaries (#7)
All checks were successful
CI / Build and Test (push) Successful in 34s

This commit was merged in pull request #7.
This commit is contained in:
2026-02-20 20:00:44 +00:00
parent f833498b65
commit cb13839157
15 changed files with 44 additions and 81 deletions

View File

@@ -1,7 +1,6 @@
package via
import (
"fmt"
"strconv"
"strings"
@@ -51,5 +50,5 @@ func (s *computedSignal) recompute() {
}
func (s *computedSignal) patchValue() string {
return fmt.Sprintf("%v", s.lastVal)
return s.lastVal
}