this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Need to read the values too for PN alerts

Reference: #1032

+2 -2
+2 -2
src/pages/settings.jsx
··· 984 984 const policyEl = elements.namedItem('policy'); 985 985 if (policyEl) policyEl.value = policy; 986 986 // alerts is {}, iterate it 987 - Object.keys(alerts).forEach((alert) => { 987 + Object.entries(alerts).forEach(([alert, value]) => { 988 988 const el = elements.namedItem(alert); 989 989 if (el?.type === 'checkbox') { 990 - el.checked = true; 990 + el.checked = !!value; 991 991 } 992 992 }); 993 993 }