Skip to content

Commit

Permalink
Merge branch 'main' into deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
davwheat committed Jan 29, 2024
2 parents a2e82c1 + 609edd7 commit 6ba35d8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/CallingAtSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@ function CallingAtSelector({
}}
>
<Droppable droppableId="callingAtStops">
{(provided, snapshot) => (
{provided => (
<div {...provided.droppableProps} ref={provided.innerRef}>
{value.map((stop, i) => {
return (
<Draggable key={stop.randomId} draggableId={stop.randomId} index={i}>
{(provided, snapshot) => (
{provided => (
<div
css={{
border: '1px solid black',
Expand Down Expand Up @@ -243,6 +243,7 @@ function CallingAtSelector({
component: CallingAtSelector as any,
props: {
availableStations: availableStations,
additionalOptions: additionalOptions,
selectLabel: 'Split calling points',
placeholder: 'Add a split calling point…',
heading: 'Calling points (INCLUDING terminating station)',
Expand Down

0 comments on commit 6ba35d8

Please sign in to comment.