diff --git a/react/src/components/BAILink.tsx b/react/src/components/BAILink.tsx index a14ec56ed..6bfd558e8 100644 --- a/react/src/components/BAILink.tsx +++ b/react/src/components/BAILink.tsx @@ -1,5 +1,4 @@ import { createStyles } from 'antd-style'; -import { X } from 'lucide-react'; import React from 'react'; import { Link, LinkProps } from 'react-router-dom'; diff --git a/react/src/components/ServiceLauncherPageContent.tsx b/react/src/components/ServiceLauncherPageContent.tsx index 3f444277f..faa6aacbd 100644 --- a/react/src/components/ServiceLauncherPageContent.tsx +++ b/react/src/components/ServiceLauncherPageContent.tsx @@ -638,7 +638,7 @@ const ServiceLauncherPageContent: React.FC = ({ serviceName: endpoint?.name, resourceGroup: endpoint?.resource_group, allocationPreset: 'custom', - desiredRoutingCount: endpoint?.desired_session_count || 1, + desiredRoutingCount: endpoint?.desired_session_count ?? 1, // FIXME: memory doesn't applied to resource allocation resource: { cpu: parseInt(JSON.parse(endpoint?.resource_slots)?.cpu),