We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd2fa4c commit f3cae70Copy full SHA for f3cae70
1 file changed
apps/roam/src/utils/migrateLeftSidebarSettings.ts
@@ -53,7 +53,7 @@ export const migrateLeftSidebarSettings = async () => {
53
54
const allPersonalSections = leftSidebarSettings.allPersonalSections;
55
56
- for (const [_, userPersonalSection] of Object.entries(allPersonalSections)) {
+ for (const userPersonalSection of Object.values(allPersonalSections)) {
57
for (const section of userPersonalSection.sections) {
58
const children = section.children || [];
59
if (children.length > 0) {
0 commit comments