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() } } }