Skip to content

Commit 96941c8

Browse files
committed
remove debug label
1 parent 4f001d3 commit 96941c8

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/features/quote_replies.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,6 @@ const processNoteProps = ([noteProps, parentNoteProps]) => {
146146
return false;
147147
};
148148

149-
const meatballButtonLabel = notePropsObjects => {
150-
const mode = processNoteProps(notePropsObjects);
151-
152-
return `Quote this reply (mode: ${mode})`;
153-
};
154-
155149
const onMeatballButtonClicked = async ({ currentTarget }) => {
156150
const [{ note: reply }] = currentTarget.__notePropsData;
157151

@@ -175,7 +169,7 @@ export const main = async function () {
175169

176170
registerReplyMeatballItem({
177171
id: meatballButtonId,
178-
label: meatballButtonLabel,
172+
label: 'Quote this reply',
179173
notePropsFilter: notePropsData => Boolean(processNoteProps(notePropsData)),
180174
onclick: event => onMeatballButtonClicked(event).catch(showErrorModal)
181175
});

0 commit comments

Comments
 (0)