Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

delete-categories #431

Merged
merged 1 commit into from
Nov 27, 2024
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
2 changes: 1 addition & 1 deletion skale-network
Submodule skale-network updated 338 files
2 changes: 1 addition & 1 deletion src/components/ecosystem/CategoryIcons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const CategoryIcons: React.FC<{ category: string }> = ({ category }) => {
return <HandshakeOutlined />
case 'security':
return <SecurityOutlined />
case 'social-network':
case 'social':
return <PeopleOutlined />
case 'tools':
return <BuildOutlined />
Expand Down
8 changes: 1 addition & 7 deletions src/core/ecosystem/categories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,11 @@ export interface Categories {
export const categories: Categories = {
ai: { name: 'AI', subcategories: {} },
bridges: { name: 'Bridges', subcategories: {} },
dao: { name: 'DAO', subcategories: {} },
'data-information': { name: 'Data/Information', subcategories: {} },
defi: {
name: 'DeFi',
subcategories: {
custody: { name: 'Custody' },
dex: { name: 'DEX' },
yield: { name: 'Yield' }
}
},
'digital-collectibles': { name: 'Digital Collectibles', subcategories: {} },
Expand All @@ -57,7 +54,6 @@ export const categories: Categories = {
'battle-royale': { name: 'Battle Royale' },
'cards_deck-building': { name: 'Cards + Deck Building' },
casual: { name: 'Casual' },
console: { name: 'Console' },
fighting: { name: 'Fighting' },
metaverse: { name: 'Metaverse' },
mobile: { name: 'Mobile' },
Expand All @@ -78,16 +74,14 @@ export const categories: Categories = {
},
hub: { name: 'Hub', subcategories: {} },
infrastructure: { name: 'Infrastructure', subcategories: {} },
nfts: { name: 'NFTs', subcategories: {} },
oracle: { name: 'Oracle', subcategories: {} },
other: { name: 'Other', subcategories: {} },
partner: { name: 'Partner', subcategories: {} },
security: { name: 'Security', subcategories: {} },
'social-network': { name: 'Social Network', subcategories: {} },
'social': { name: 'Social', subcategories: {} },
tools: { name: 'Tools', subcategories: {} },
wallet: { name: 'Wallet', subcategories: {} },
metaverse: { name: 'Metaverse', subcategories: {} },
web3: { name: 'Web3', subcategories: {} },
pretge: { name: 'Pre-TGE', subcategories: {} },
utility: { name: 'Utility', subcategories: {} },
analytics: { name: 'Analytics', subcategories: {} },
Expand Down
Loading