Skip to content

Commit

Permalink
Properly Close the Delete Dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmartt committed Jul 10, 2024
1 parent 5d16aa1 commit fbcde27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ export default function ChannelCard({ channel, publisherPayable, onChannelDelete
if (channelType() === 'site') {
return <Icon className={`color-interactive ${styles['channel-card-icon']}`} name='globe' />;
} else if (channelType() === 'twitter') {
return <Icon className={`color-interactive ${styles['channel-card-icon']}`} name='social-x' forceColor='true' />;
return <Icon className={`color-interactive ${styles['channel-card-icon']}`} name='social-x' forceColor={true} />;
} else {
return <Icon className={`color-interactive ${styles['channel-card-icon']}`} name={`social-${channelType()}`} forceColor='true' />;
return <Icon className={`color-interactive ${styles['channel-card-icon']}`} name={`social-${channelType()}`} forceColor={true} />;
}
}

Expand Down
2 changes: 1 addition & 1 deletion nextjs/src/app/[locale]/publishers/settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export default function SettingsPage() {
{t('Settings.index.delete_account.button')}
</Button>
</Card>
<Dialog isOpen={isModalOpen}>
<Dialog isOpen={isModalOpen} onClose={() => setModalIsOpen(false)}>
<div slot='title'>
{t('Settings.index.delete_account.prompt.header')}
</div>
Expand Down

0 comments on commit fbcde27

Please sign in to comment.