Skip to content

Commit

Permalink
Merge pull request #479 from Stremio/feature-acc-deletion-button
Browse files Browse the repository at this point in the history
added req acc deletion button
  • Loading branch information
tymmesyde committed Oct 17, 2023
2 parents c8d63b2 + ae72b21 commit f980c9e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/routes/Settings/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,16 @@ const Settings = () => {
:
null
}
{
profile.auth !== null && profile.auth.user !== null ?
<div className={styles['option-container']}>
<Button className={classnames(styles['option-input-container'], styles['link-container'])} title={t('SETTINGS_ACC_DELETE')} target={'_blank'} href={'https://stremio.zendesk.com/hc/en-us/articles/360021428911-How-to-delete-my-account'}>
<div className={styles['label']}>{ t('SETTINGS_ACC_DELETE') }</div>
</Button>
</div>
:
null
}
</div>
<div ref={playerSectionRef} className={styles['section-container']}>
<div className={styles['section-title']}>{ t('SETTINGS_NAV_PLAYER') }</div>
Expand Down

0 comments on commit f980c9e

Please sign in to comment.