Skip to content

Commit

Permalink
Wire up about module slideout
Browse files Browse the repository at this point in the history
  • Loading branch information
smb2268 committed Jan 17, 2025
1 parent 78c3ad6 commit dc24f13
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/src/organisms/ModuleCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ import { TemperatureModuleSlideout } from './TemperatureModuleSlideout'
import { AboutModuleSlideout } from './AboutModuleSlideout'
import { HeaterShakerModuleData } from './HeaterShakerModuleData'
import { HeaterShakerSlideout } from './HeaterShakerSlideout'
import { FlexStackerModuleSlideout } from './FlexStackerModuleSlideout'
import { TestShakeSlideout } from './TestShakeSlideout'
import { ModuleWizardFlows } from '/app/organisms/ModuleWizardFlows'
import { getModulePrepCommands } from '/app/local-resources/modules'
Expand Down Expand Up @@ -557,7 +558,12 @@ const ModuleSlideout = (props: ModuleSlideoutProps): JSX.Element => {
/>
)
} else {
// TODO add flex stacker slideout once it exists
return <></>
return (
<FlexStackerModuleSlideout
module={module}
onCloseClick={onCloseClick}
isExpanded={showSlideout}
/>
)
}
}

0 comments on commit dc24f13

Please sign in to comment.