Fix up PR issues

This commit is contained in:
Kaity A 2023-05-07 22:07:40 +10:00
parent 1b5d2084d8
commit 9e8110b7bc
No known key found for this signature in database
GPG key ID: 5A797B97C2A490AD
2 changed files with 12 additions and 26 deletions

View file

@ -88,7 +88,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
if (
props.note.visibility === "public" ||
props.note.visibil ity === "hidden"
props.note.visibility === "hidden"
) {
buttonActions.push({
text: i18n.ts.renote,

View file

@ -61,35 +61,21 @@ export function getNoteMenu(props: {
}
function edit(): void {
os.confirm({
type: "info",
text: "This feature is experimental, please be careful and report bugs if you find them to @supakaity@blahaj.zone.",
}).then(({ canceled }) => {
if (canceled) return;
os.post({
initialNote: appearNote,
renote: appearNote.renote,
reply: appearNote.reply,
channel: appearNote.channel,
editId: appearNote.id,
});
os.post({
initialNote: appearNote,
renote: appearNote.renote,
reply: appearNote.reply,
channel: appearNote.channel,
editId: appearNote.id,
});
}
function duplicate(): void {
os.confirm({
type: "info",
text: "This feature is experimental, please be careful and report bugs if you find them to @supakaity@blahaj.zone.",
}).then(({ canceled }) => {
if (canceled) return;
os.post({
initialNote: appearNote,
renote: appearNote.renote,
reply: appearNote.reply,
channel: appearNote.channel,
});
os.post({
initialNote: appearNote,
renote: appearNote.renote,
reply: appearNote.reply,
channel: appearNote.channel,
});
}