Skip to content

Commit

Permalink
fix(*): pr mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
Omri-Levy committed Oct 2, 2024
1 parent af5a74c commit 8d683d6
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import * as React from 'react';
import { PropsWithChildren } from 'react';
import { ctw } from '../../../utils/ctw/ctw';

type Test = PropsWithChildren;

export const CardContent = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>(
({ className, ...props }, ref) => (
<div ref={ref} className={ctw('p-6 pt-0', className)} {...props} />
Expand Down
2 changes: 1 addition & 1 deletion apps/backoffice-v2/src/domains/customer/fetchers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const CustomerSchema = z.object({
isMerchantMonitoringEnabled: z.boolean().default(false),
isExample: z.boolean().default(false),
isDemo: z.boolean().default(false),
isChatbotEnabled: z.boolean().default(true),
isChatbotEnabled: z.boolean().default(false),
})
.nullable()
.default({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React, { FunctionComponent } from 'react';
import { Card, CardContent } from '@ballerine/ui';
import { Handle, NodeProps, Position } from '@xyflow/react';
import '@xyflow/react/dist/style.css';

export const CustomNode: FunctionComponent<NodeProps> = ({
positionAbsoluteX,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export const useUbosRegistryProvidedBlock = ({

const getCell = useCallback(() => {
if (Array.isArray(uiNodes) && uiNodes?.length && Array.isArray(uiEdges) && uiEdges?.length) {
// TODO create a graph cell
return {
type: 'node',
value: (
Expand Down

0 comments on commit 8d683d6

Please sign in to comment.