Fun picker improvements

This commit is contained in:
Jamie Kyle
2025-03-26 12:35:32 -07:00
committed by GitHub
parent 427f91f903
commit b0653d06fe
142 changed files with 3581 additions and 1280 deletions
+2 -2
View File
@@ -416,7 +416,7 @@ async function withPreSendChecks(
): Promise<void> {
const conversation = window.ConversationController.get(conversationId);
if (!conversation) {
throw new Error('sendMultiMediaMessage: No conversation found');
throw new Error('withPreSendChecks: No conversation found');
}
const sendStart = Date.now();
@@ -949,7 +949,7 @@ function onEditorStateChange({
const conversation = window.ConversationController.get(conversationId);
if (!conversation) {
throw new Error('processAttachments: Unable to find conversation');
throw new Error('onEditorStateChange: Unable to find conversation');
}
const state = getState().composer.conversations[conversationId];