Skip to content

Commit c869cd4

Browse files
committed
improvement(files): uncolorized plan name
1 parent 07c2272 commit c869cd4

File tree

1 file changed

+1
-9
lines changed
  • apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/files

1 file changed

+1
-9
lines changed

apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/files/files.tsx

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ const PLAN_NAMES = {
7575
free: 'Free',
7676
} as const
7777

78-
const GRADIENT_TEXT_STYLES =
79-
'gradient-text bg-gradient-to-b from-gradient-primary via-gradient-secondary to-gradient-primary'
80-
8178
export function Files() {
8279
const params = useParams()
8380
const workspaceId = params?.workspaceId as string
@@ -489,12 +486,7 @@ export function Files() {
489486
<div className='mt-auto flex flex-col gap-[8px] pt-[10px]'>
490487
<div className='flex items-center justify-between'>
491488
<div className='flex items-center gap-[6px]'>
492-
<span
493-
className={cn(
494-
'font-medium text-[12px]',
495-
planName === 'free' ? 'text-[var(--text-primary)]' : GRADIENT_TEXT_STYLES
496-
)}
497-
>
489+
<span className='font-medium text-[12px] text-[var(--text-primary)]'>
498490
{displayPlanName}
499491
</span>
500492
<div className='h-[14px] w-[1.5px] bg-[var(--divider)]' />

0 commit comments

Comments
 (0)