ShareDialog: fix share on Twitter URL
At some point, X (Formerly known as Twitter) changed the URL to share Tweets. This changes it to the now correct URL. Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>pull/28886/head
parent
7b565e7997
commit
fb41c055d6
|
@ -32,7 +32,7 @@ const SOCIALS = [
|
|||
{
|
||||
name: "Twitter",
|
||||
img: require("../../../../res/img/social/twitter-2.png"),
|
||||
url: (url: string) => `https://twitter.com/home?status=${url}`,
|
||||
url: (url: string) => `https://twitter.com/intent/tweet?text=${url}`,
|
||||
},
|
||||
{
|
||||
name: "LinkedIn",
|
||||
|
|
Loading…
Reference in New Issue