Skip to content

Commit

Permalink
remove unnecessary { color: true } parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
m5r committed Jul 17, 2024
1 parent 5bb8abe commit aaba325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/warn-upload-overwrite.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const preUploadDoc = async (db, localDoc) => {
return Promise.resolve(true);
}

const diff = jsonDiff.diffString(remoteDoc, localDoc, { color: true });
const diff = jsonDiff.diffString(remoteDoc, localDoc);

if (diff) {
let index = userPrompt.keyInSelect(responseChoicesWithDiff, question, {cancel: false});
Expand Down

0 comments on commit aaba325

Please sign in to comment.