@ethlete/core 4.24.0 → 4.24.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ethlete/core
2
2
 
3
+ ## 4.24.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`4e688a1`](https://github.com/ethlete-io/ethdk/commit/4e688a1bfb8ff20af33852f5beef4d0b766027d9) Thanks [@TomTomB](https://github.com/TomTomB)! - Fix sidebar dialogs not showing up
8
+
3
9
  ## 4.24.0
4
10
 
5
11
  ### Minor Changes
@@ -2781,7 +2781,7 @@ const syncSignal = (from, to, options) => {
2781
2781
  }
2782
2782
  const ref = effect(() => {
2783
2783
  const formVal = from();
2784
- if (isFirstRun) {
2784
+ if (options?.skipFirstRun && isFirstRun) {
2785
2785
  isFirstRun = false;
2786
2786
  return;
2787
2787
  }