Skip to content

Commit

Permalink
Update FAQ + remove subdomain from profile settings (#994)
Browse files Browse the repository at this point in the history
  • Loading branch information
omkarb authored Sep 10, 2024
1 parent 5527605 commit 6f5780f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/base-docs/docs/tools/basenames-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ displayed_sidebar: null

### 1. What are Basenames?

Basenames are a core onchain building block that enable builders to establish their identity on Base by registering human-readable names for their wallet address(es). They are fully onchain, built on the same technology powering ENS names and deployed on Base. These human-readable names can be used when connecting to onchain apps, and sending and receiving on Base and any other EVM chain.
[Basenames](https://base.org/names) are a core onchain building block that enable builders to establish their identity on Base by registering human-readable names for their wallet address(es). They are fully onchain, built on the same technology powering ENS names and deployed on Base. These human-readable names can be used when connecting to onchain apps, and sending and receiving on Base and any other EVM chain. Get your Basename at [base.org/names](https://base.org/names).

### 2. What are the Basename registration fees?

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,14 @@ import {
export enum SettingsTabs {
ManageProfile = 'manage-profile',
Ownership = 'ownership',
Subdomain = 'subdomain',
}

export const settingTabsForDisplay = {
[SettingsTabs.ManageProfile]: 'Manage Profile',
[SettingsTabs.Ownership]: 'Ownership',
[SettingsTabs.Subdomain]: 'Subdomain',
};

export const allSettingsTabs = [
SettingsTabs.ManageProfile,
SettingsTabs.Ownership,
SettingsTabs.Subdomain,
];
export const allSettingsTabs = [SettingsTabs.ManageProfile, SettingsTabs.Ownership];

// Other features are not yet supported
export const settingsTabsEnabled = [SettingsTabs.ManageProfile, SettingsTabs.Ownership];
Expand Down

0 comments on commit 6f5780f

Please sign in to comment.