Skip to content

Commit

Permalink
Fix share button for year in review short card
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Dec 23, 2023
1 parent b376f89 commit a2db81b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/stats/YearInReviewShort.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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]
}
Expand Down

0 comments on commit a2db81b

Please sign in to comment.