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
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,18 @@ interface ProfileUserStackProps {
user: PublicProfile;
}

// Predefined section order
const SECTION_ORDER = ['Primary', 'Hobby', 'Learning', 'Past'];
// Predefined section order - includes both stack sections and tool categories
const SECTION_ORDER = [
'Primary',
'Hobby',
'Learning',
'Past',
'Development',
'Design',
'Productivity',
'Communication',
'AI',
];

export function ProfileUserStack({
user,
Expand Down Expand Up @@ -138,7 +148,7 @@ export function ProfileUserStack({
color={TypographyColor.Primary}
bold
>
Stack
Stack & Tools
</Typography>
{isOwner && (
<Button
Expand Down Expand Up @@ -172,7 +182,7 @@ export function ProfileUserStack({
type={TypographyType.Callout}
color={TypographyColor.Tertiary}
>
Share your tech stack with the community
Share your stack & tools with the community
</Typography>
<Button
variant={ButtonVariant.Secondary}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import { useViewSize, ViewSize } from '../../../../hooks';
import type {
UserStack,
AddUserStackInput,
DatasetTool,
} from '../../../../graphql/user/userStack';
import type { DatasetTool } from '../../../../graphql/user/userTool';
import { useStackSearch } from '../../hooks/useStackSearch';
import { PlusIcon } from '../../../../components/icons';
import YearSelect from '../../../../components/profile/YearSelect';
Expand Down

This file was deleted.

This file was deleted.

Loading