We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f7fb1a commit b61a786Copy full SHA for b61a786
lib/api.js
@@ -158,7 +158,7 @@ export const synchronizeZeroTrustLists = async (items) => {
158
for(const [listId, patch] of Object.entries(patches)) {
159
const appends = !!patch.append ? patch.append.length : 0;
160
const removals = !!patch.remove ? patch.remove.length : 0;
161
- console.log(`Updating list "${cgpsLists.find(list => list.id === listId).name}", ${appends ? `${appends} additions, ` : ''}${removals ? `${removals} removals` : ''}`);
+ console.log(`Updating list "${cgpsLists.find(list => list.id === listId).name}"${appends ? `, ${appends} additions` : ''}${removals ? `, ${removals} removals` : ''}`);
162
await patchExistingList(listId, patch);
163
}
164
0 commit comments