From d77b83033dcd145e9fd1ee0c93b1abffa1c4b5f8 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Wed, 18 Dec 2024 01:59:40 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=AC=EC=83=9D=20=EB=AA=A9=EB=A1=9D=20?= =?UTF-8?q?=EC=83=9D=EC=84=B1/=EC=88=98=EC=A0=95=20-=20=EC=83=88=EB=A1=9C?= =?UTF-8?q?=EC=9A=B4=20=EC=BD=98=ED=85=90=EC=B8=A0=20=EC=B6=94=EA=B0=80/?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0=20-=20=ED=84=B0=EC=B9=98=EC=98=81=EC=97=AD?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Playlist/Create/PlaylistAddContentItemView.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SodaLive/Sources/Content/Playlist/Create/PlaylistAddContentItemView.swift b/SodaLive/Sources/Content/Playlist/Create/PlaylistAddContentItemView.swift index 34c8708..6f7d7be 100644 --- a/SodaLive/Sources/Content/Playlist/Create/PlaylistAddContentItemView.swift +++ b/SodaLive/Sources/Content/Playlist/Create/PlaylistAddContentItemView.swift @@ -61,10 +61,10 @@ struct PlaylistAddContentItemView: View { Image(isChecked ? "ic_check_blue" : "ic_playlist_add") .padding(8) - .onTapGesture { - onClick() - isChecked.toggle() - } + } + .onTapGesture { + onClick() + isChecked.toggle() } } }