Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
bfauble committed Jan 10, 2025
1 parent e0a0f2b commit 9269214
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
4 changes: 1 addition & 3 deletions assets/src/components/detours/deleteDetourModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ export const DeleteDetourModal = ({
<h3 className="fs-3 fw-semibold lh-sm my-1">Delete Draft</h3>
</Modal.Header>
<Modal.Body>
<div className="d-flex flex-row gap-2 mb-3">
{affectedRoute}
</div>
<div className="d-flex flex-row gap-2 mb-3">{affectedRoute}</div>
<p>Are you sure you want to delete this draft?</p>
</Modal.Body>
<Modal.Footer>
Expand Down
9 changes: 4 additions & 5 deletions assets/src/components/detours/diversionPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -388,13 +388,12 @@ export const DiversionPage = ({
}
affectedRoute={
<AffectedRoute
routeName={routeName ?? "??"}
routeDescription={routeDescription ?? "??"}
routeOrigin={routeOrigin ?? "??"}
routeDirection={routeDirection ?? "??"}
routeName={routeName ?? "??"}
routeDescription={routeDescription ?? "??"}
routeOrigin={routeOrigin ?? "??"}
routeDirection={routeDirection ?? "??"}
/>
}

/>
) : null}
</DetourFinishedPanel>
Expand Down

0 comments on commit 9269214

Please sign in to comment.