(key: string)
| 1042 | const orderedKeys: string[] = [] |
| 1043 | const seen = new Set<string>() |
| 1044 | const pushKey = (key: string): void => { |
| 1045 | if (seen.has(key)) return |
| 1046 | seen.add(key) |
| 1047 | orderedKeys.push(key) |
| 1048 | } |
| 1049 | |
| 1050 | pushKey('quick:') |
| 1051 | if (!primaryNotesAtRoot) pushKey('inbox:') |
no outgoing calls
no test coverage detected