hotfix: update button name

This commit is contained in:
byeoon 2025-01-31 12:47:28 -05:00 committed by GitHub
parent 3da8759cd3
commit ed308e0173
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;