diff --git a/src/renderer/components/ft-subscribe-button/ft-subscribe-button.js b/src/renderer/components/ft-subscribe-button/ft-subscribe-button.js index 806310857..067be3ed2 100644 --- a/src/renderer/components/ft-subscribe-button/ft-subscribe-button.js +++ b/src/renderer/components/ft-subscribe-button/ft-subscribe-button.js @@ -105,6 +105,10 @@ export default defineComponent({ const currentProfile = deepCopy(profile) if (this.isProfileSubscribed(profile)) { + // confirmation pop-up + if (!confirm('Are you sure you want to unsubscribe?')) { + return + } currentProfile.subscriptions = currentProfile.subscriptions.filter((channel) => { return channel.id !== this.channelId })