Skip to content

Commit

Permalink
💚 Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed May 24, 2024
1 parent ba90afc commit dd8eb36
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 198 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const AddConnectionButton = ({
},
})

const onUserSelect = (value) => {
const onUserSelect = (value: string) => {
if (value === 'Clear') {
form.reset();
} else {
Expand Down
4 changes: 1 addition & 3 deletions apps/client-ts/src/components/ui/stepper/vertical-step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,7 @@ const VerticalStep = React.forwardRef<HTMLDivElement, VerticalStepProps>(

const renderChildren = () => {
if (!expandVerticalSteps) {
return (
{children}
);
return <></>;
}
return children;
};
Expand Down
194 changes: 0 additions & 194 deletions apps/client-ts/src/components/ui/use-toast.ts

This file was deleted.

0 comments on commit dd8eb36

Please sign in to comment.