Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnm committed Dec 12, 2024
1 parent f80eaa6 commit 6a14650
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ interface StepHeaderProps {
currentStep: number;
title: string;
headerNote?: React.ReactNode;
workspaceId?: string;
onPrevStep: () => void;
onDismiss: () => void;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ export const Addons: React.FC<StepProps> = ({
? 'Update plan'
: 'Choose your add-ons (optional)'
}
workspaceId={urlWorkspaceId}
/>

<Stack direction="vertical" gap={8}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export const ChangeLegacyPlan: React.FC<StepProps> = ({
currentStep={currentStep}
numberOfSteps={numberOfSteps}
title="Review plan"
workspaceId={urlWorkspaceId}
/>

<Text color="#e5e5e5">You are switching to the following plan:</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export const ChangePlan: React.FC<StepProps> = ({
currentStep={currentStep}
numberOfSteps={numberOfSteps}
title="Review plan"
workspaceId={urlWorkspaceId}
/>

<Text color="#e5e5e5">You are switching to the following plan:</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ export const Payment: React.FC<StepProps> = ({
? 'Redirecting to payment to provider'
: 'Cannot redirect to payment provider'
}
workspaceId={workspaceId}
/>

{checkout.status === 'error' ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ export const Plans: React.FC<StepProps> = ({
currentStep={currentStep}
numberOfSteps={numberOfSteps}
title={`Choose a plan ${headerSuffix}`}
workspaceId={urlWorkspaceId}
headerNote={
<>
Your workspace is currently on the{' '}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ export const SpendingLimit: React.FC<StepProps> = ({
currentStep={currentStep}
numberOfSteps={numberOfSteps}
title="Set a spending limit"
workspaceId={urlWorkspaceId}
/>

<Text color="#a6a6a6">
Expand Down

0 comments on commit 6a14650

Please sign in to comment.