Skip to content

Commit

Permalink
added missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasHalwax committed Sep 6, 2023
1 parent 3e9fa4c commit da3e7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/Clipboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Clipboard.doCopy = async (store, selected) => {
const ids = selected.filter(canCopy)
const keys = await store.collectKeys(ids, ['tags', 'link', 'style'])
const tuples = await store.tuples(keys)
writeEntries(tuples)
await writeEntries(tuples)
return keys
}

Expand Down

0 comments on commit da3e7c1

Please sign in to comment.