diff --git a/packages/client/src/components/MkRenoteButton.vue b/packages/client/src/components/MkRenoteButton.vue
index e0f45ecfe..476e46727 100644
--- a/packages/client/src/components/MkRenoteButton.vue
+++ b/packages/client/src/components/MkRenoteButton.vue
@@ -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,
diff --git a/packages/client/src/scripts/get-note-menu.ts b/packages/client/src/scripts/get-note-menu.ts
index 09281e9e6..d36eff609 100644
--- a/packages/client/src/scripts/get-note-menu.ts
+++ b/packages/client/src/scripts/get-note-menu.ts
@@ -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,
 		});
 	}