Skip to content

Commit

Permalink
플랜
Browse files Browse the repository at this point in the history
  • Loading branch information
imddoy committed Jan 24, 2025
1 parent 705c64c commit db459c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/toolDetail/components/planBox/plan/Plan.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const Plan = forwardRef<HTMLDivElement, ToolPlan>(({ toolPlans }, ref) => {
key={plan.planId}
isSingleLine={false}
planName={plan.planName}
label={plan.price}
label={price}
dollar={plan.isDollar ? Math.round((price ?? 0) / 1300) : undefined}
isdollar={plan.isDollar}
description={plan.description}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/toolDetail/components/toggle/Toggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as S from './Toggle.styled';
interface TogglePropsType {
isSingleLine: boolean;
planName?: string;
label: number | string;
label: number | string | null;
dollar?: number;
description: string;
isdollar: boolean;
Expand Down

0 comments on commit db459c5

Please sign in to comment.