fix(core): revert retryFetchErrors default to false

This change reverts the default value of retryFetchErrors to false.
It will be handled separately in a future update.
This commit is contained in:
Aishanee Shah
2026-03-09 18:18:01 +00:00
parent 75074b3068
commit e0005b7dca
4 changed files with 5 additions and 5 deletions

View File

@@ -306,7 +306,7 @@ const SETTINGS_SCHEMA = {
label: 'Retry Fetch Errors',
category: 'General',
requiresRestart: false,
default: true,
default: false,
description:
'Retry on "exception TypeError: fetch failed sending request" errors.',
showInDialog: false,