We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26924d7 commit d5fd6c0Copy full SHA for d5fd6c0
src/provider.tsx
@@ -247,7 +247,9 @@ export const UpdateProvider = ({
247
}
248
const { checkStrategy, dismissErrorAfter, autoMarkSuccess } = options;
249
if (autoMarkSuccess) {
250
- markSuccess();
+ setTimeout(() => {
251
+ markSuccess();
252
+ }, 1000);
253
254
if (checkStrategy === 'both' || checkStrategy === 'onAppResume') {
255
stateListener.current = AppState.addEventListener(
0 commit comments