[bugfix] Fix missing hasChanged func (#3764)

This commit is contained in:
tobi 2025-02-09 12:23:16 +01:00 committed by GitHub
commit 128fcc871c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -103,6 +103,7 @@ function value<T>(name: string, initialValue: T) {
name,
Name: "",
value: initialValue,
hasChanged: () => true,
};
}