(fix) dark theme,train modal

This commit is contained in:
ManishMadan2882
2024-07-30 18:01:49 +05:30
parent f75ed4bc66
commit 09f2f2a9e7
8 changed files with 26 additions and 53 deletions

View File

@@ -48,7 +48,8 @@ export default function ConversationTile({
setConversationsName(conversation.name);
}, [conversation.name]);
function handleEditConversation() {
function handleEditConversation(event: SyntheticEvent) {
event.stopPropagation();
setIsEdit(true);
setOpen(false);
}