@homebound/beam 2.416.0 → 2.416.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/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +34 -35
- package/dist/index.d.ts +34 -35
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
package/dist/index.cjs
CHANGED
|
@@ -7095,7 +7095,7 @@ function Button(props) {
|
|
|
7095
7095
|
const result = onPress(e);
|
|
7096
7096
|
if (isPromise(result)) {
|
|
7097
7097
|
setAsyncInProgress(true);
|
|
7098
|
-
result.finally(() => setAsyncInProgress(false));
|
|
7098
|
+
void result.finally(() => setAsyncInProgress(false));
|
|
7099
7099
|
}
|
|
7100
7100
|
return result;
|
|
7101
7101
|
},
|
|
@@ -12744,7 +12744,7 @@ function ToggleButton(props) {
|
|
|
12744
12744
|
const result = onChange(e);
|
|
12745
12745
|
if (isPromise(result)) {
|
|
12746
12746
|
setAsyncInProgress(true);
|
|
12747
|
-
result.finally(() => setAsyncInProgress(false));
|
|
12747
|
+
void result.finally(() => setAsyncInProgress(false));
|
|
12748
12748
|
}
|
|
12749
12749
|
return result;
|
|
12750
12750
|
}
|
|
@@ -14380,7 +14380,7 @@ function renderVirtual(style, id, columns, visibleDataRows, keptSelectedRows, fi
|
|
|
14380
14380
|
const result = infiniteScroll.onEndReached(index);
|
|
14381
14381
|
if (isPromise(result)) {
|
|
14382
14382
|
setFetchMoreInProgress(true);
|
|
14383
|
-
result.finally(() => setFetchMoreInProgress(false));
|
|
14383
|
+
void result.finally(() => setFetchMoreInProgress(false));
|
|
14384
14384
|
}
|
|
14385
14385
|
}
|
|
14386
14386
|
} : {}
|