diff --git a/packages/admin-ui/src/pages/system/components/SystemUpdate/SystemUpdateDetails.tsx b/packages/admin-ui/src/pages/system/components/SystemUpdate/SystemUpdateDetails.tsx index cb4a6d867..9c4765878 100644 --- a/packages/admin-ui/src/pages/system/components/SystemUpdate/SystemUpdateDetails.tsx +++ b/packages/admin-ui/src/pages/system/components/SystemUpdate/SystemUpdateDetails.tsx @@ -73,7 +73,10 @@ export function getCoreDeps( // remove the warning on install for the core.dnp.dappnode.eth DNP // Alerts can be added via the conditional update alerts coreDnp.warningOnInstall = ""; - return [coreDnp]; + + // instead create a new object with warningOnInstall removed + // otherwise there will be raised the error: `TypeError: Cannot add property warningOnInstall, object is not extensible` + return [{ ...coreDnp, warningOnInstall: "" }]; } return [];