Fix share button for year in review short card

This commit is contained in:
advplyr 2023-12-23 17:13:44 -06:00
parent b376f89ce5
commit a2db81bf7d

View File

@ -152,7 +152,7 @@ export default {
},
share() {
this.canvas.toBlob((blob) => {
const file = new File([blob], 'yearinreviewserver.png', { type: blob.type + 'cat' })
const file = new File([blob], 'yearinreviewshort.png', { type: blob.type })
const shareData = {
files: [file]
}