From 9416a501aa3afe1127e1939d96899dd6886b2268 Mon Sep 17 00:00:00 2001 From: Seo Date: Fri, 24 May 2024 10:53:04 +0900 Subject: [PATCH] [REF/#105]homeview formatting --- DDooing/DDooing/Views/Home/HomeView.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/DDooing/DDooing/Views/Home/HomeView.swift b/DDooing/DDooing/Views/Home/HomeView.swift index 610ed8e..665f752 100644 --- a/DDooing/DDooing/Views/Home/HomeView.swift +++ b/DDooing/DDooing/Views/Home/HomeView.swift @@ -52,7 +52,9 @@ struct HomeView: View { .contextMenu(menuItems: { ForEach(messages) { mess in if mess.isStarred { - Button (action: {}, label: { + Button (action: { + sendMessage(messageText: mess.message, isStarred: true) + }, label: { Text(mess.message) }) }}