Add textbox closing after channel/playlist subscribing

This commit is contained in:
MerlinScheurer
2025-01-12 16:11:00 +01:00
parent 868564ee32
commit c62a495f96
2 changed files with 3 additions and 1 deletions

View File

@@ -120,7 +120,8 @@ const Channels = () => {
onClick={async () => {
await updateBulkChannelSubscriptions(channelsToSubscribeTo, true);
setRefresh(true);
setShowNotification(true);
setShowAddForm(false);
}}
/>
</div>

View File

@@ -107,6 +107,7 @@ const Playlists = () => {
onClick={async () => {
await updateBulkPlaylistSubscriptions(playlistsToAddText, true);
setShowNotification(true);
setShowAddForm(false);
}}
/>
</div>