[agent-pipeline] pipe-20260309055714-23ry round-3

This commit is contained in:
DDD1542
2026-03-09 17:18:45 +09:00
parent 790592ec76
commit e4de414dfb
12 changed files with 311 additions and 273 deletions

View File

@@ -27,7 +27,6 @@ const initialState: DataConnectionState = {
export const DataConnectionDesigner: React.FC = () => {
const [state, setState] = useState<DataConnectionState>(initialState);
const { isMobile, isTablet } = useResponsive();
return (
<div className="h-screen bg-background">
@@ -41,7 +40,7 @@ export const DataConnectionDesigner: React.FC = () => {
</div>
<div className="flex h-[calc(100vh-80px)]">
<div className="w-[30%] bg-white border-r border-border flex flex-col">
<div className="w-[30%] bg-background border-r border-border flex flex-col">
<ConnectionTypeSelector
connectionType={state.connectionType}
onConnectionTypeChange={(type) => setState(prev => ({ ...prev, connectionType: type }))}