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 6db9488 commit a652562Copy full SHA for a652562
source/renderer/app/utils/votingPDFGenerator.ts
@@ -101,7 +101,7 @@ export const votingPDFGenerator = async ({
101
const dialogPath = await showSaveDialogChannel.send(params);
102
const filePath = dialogPath.filePath || '';
103
104
- if (dialogPath.canceled || !!filePath) {
+ if (dialogPath.canceled || !filePath) {
105
return VotingPDFGeneratorResult.CancelledByUser;
106
}
107
0 commit comments