Skip to content

Commit

Permalink
chore: remove the dead types
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 committed May 7, 2024
1 parent a085e24 commit 9610b57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AnyStep, EnqueueSteps, FlowType, RegisterSteps, SignInSteps, SignOutSteps } from "@/types/signInActions.ts";
import { AnyStep, EnqueueSteps, FlowType, SignInSteps, SignOutSteps } from "@/types/signInActions.ts";
import { Card, CardContent, CardHeader } from "@ui/components/ui/card.tsx";
import { Timeline, TimelineDot, TimelineHeading, TimelineItem, TimelineLine } from "@ui/components/ui/timeline.tsx";
import React, { useEffect, useState } from "react";
Expand Down
2 changes: 1 addition & 1 deletion apps/forge/src/components/signin/actions/SignInManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ interface SignInManagerProps<FlowT extends FlowType | undefined = undefined> {

export const getStepComponent = (
currentFlow: FlowType,
currentStep: SignInSteps | SignOutSteps | RegisterSteps | EnqueueSteps,
currentStep: SignInSteps | SignOutSteps | EnqueueSteps,
flowConfig: FlowConfiguration,
): FlowStepComponent => {
switch (currentFlow) {
Expand Down

0 comments on commit 9610b57

Please sign in to comment.