Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/apps/accounts/src/settings/tabs/account/AccountTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { FC } from 'react'
import { UserProfile, UserTraits } from '~/libs/core'

import { AccountRole } from './account-role'
import { SecuritySection } from './security'
import { UserAndPassword } from './user-and-pass'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The import statement for SecuritySection has been removed, which aligns with the PR's goal to remove the security section. Ensure that all usages of SecuritySection within the file are also removed to prevent any potential errors.

import { MemberAddress } from './address'
import styles from './AccountTab.module.scss'
Expand All @@ -15,15 +14,13 @@ interface AccountTabProps {

const AccountTab: FC<AccountTabProps> = (props: AccountTabProps) => (
<div className={styles.container}>
<h3>ACCOUNT INFORMATION & SECURITY</h3>
<h3>ACCOUNT INFORMATION</h3>

<AccountRole profile={props.profile} />

<UserAndPassword profile={props.profile} memberTraits={props.memberTraits} />

<MemberAddress profile={props.profile} />

<SecuritySection profile={props.profile} />
</div>
)

Expand Down

This file was deleted.

143 changes: 0 additions & 143 deletions src/apps/accounts/src/settings/tabs/account/security/Security.tsx

This file was deleted.

This file was deleted.

This file was deleted.

Loading