mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-02-24 15:35:11 +00:00
hotfix: update button name
This commit is contained in:
parent
3da8759cd3
commit
ed308e0173
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ function buildMenuItem(type: "Sticker", fetchData: () => Promisable<Omit<Sticker
|
||||||
<Menu.MenuItem
|
<Menu.MenuItem
|
||||||
id="copystickerurl"
|
id="copystickerurl"
|
||||||
key="copystickerurl"
|
key="copystickerurl"
|
||||||
label={"Copy Sticker Link"}
|
label={"Copy URL"}
|
||||||
action={async () => {
|
action={async () => {
|
||||||
const res = await fetchData();
|
const res = await fetchData();
|
||||||
const data = { t: type, ...res } as Sticker;
|
const data = { t: type, ...res } as Sticker;
|
||||||
|
@ -89,7 +89,7 @@ function buildMenuItem(type: "Sticker", fetchData: () => Promisable<Omit<Sticker
|
||||||
<Menu.MenuItem
|
<Menu.MenuItem
|
||||||
id="openstickerlink"
|
id="openstickerlink"
|
||||||
key="openstickerlink"
|
key="openstickerlink"
|
||||||
label={"Open Sticker Link"}
|
label={"Open URL"}
|
||||||
action={async () => {
|
action={async () => {
|
||||||
const res = await fetchData();
|
const res = await fetchData();
|
||||||
const data = { t: type, ...res } as Sticker;
|
const data = { t: type, ...res } as Sticker;
|
||||||
|
|
Loading…
Add table
Reference in a new issue