From 244072f90b079ff4ebc14a1dec7e5bad299180d0 Mon Sep 17 00:00:00 2001 From: Barrett Burnworth <77902178+pantheredeye@users.noreply.github.com> Date: Wed, 11 Dec 2024 06:54:51 -0600 Subject: [PATCH] chore: add inspection button to inspection list --- .../components/InspectionsListCell/InspectionsListCell.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/src/components/InspectionsListCell/InspectionsListCell.tsx b/web/src/components/InspectionsListCell/InspectionsListCell.tsx index c92f1fc..766a434 100644 --- a/web/src/components/InspectionsListCell/InspectionsListCell.tsx +++ b/web/src/components/InspectionsListCell/InspectionsListCell.tsx @@ -3,6 +3,7 @@ import type { FindInspectionsListQueryVariables, } from 'types/graphql' +import { Link, routes } from '@redwoodjs/router' import type { CellSuccessProps, CellFailureProps, @@ -49,6 +50,12 @@ export const Success = ({ >) => { return (
+ + Add Inspection +
)