Skip to content

Commit

Permalink
fix: adding proper rfp ui
Browse files Browse the repository at this point in the history
  • Loading branch information
gurjmatharu committed Apr 17, 2023
1 parent 7269acb commit 978b838
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import ExternalLayout from "components/Layout/ExternalLayout";
import ExternalTaskList from "components/TaskList/ExternalTaskList";
import { Button } from "@button-inc/bcgov-theme";
import { useRouter } from "next/router";
import ExternalProjectFormSummary from "components/Form/ExternalProjectFormSummary";
import { getExternalProjectRevisionPageRoute } from "routes/pageRoutes";
import ProjectFormSummary from "components/Form/ProjectFormSummary";

const ExternalCifProjectViewQuery = graphql`
query viewExternalProjectRevisionQuery($projectRevision: ID!) {
Expand All @@ -16,8 +16,8 @@ const ExternalCifProjectViewQuery = graphql`
}
projectRevision(id: $projectRevision) {
id
...ExternalProjectFormSummary_projectRevision
...ExternalTaskList_projectRevision
...ProjectFormSummary_projectRevision
}
}
`;
Expand All @@ -39,8 +39,7 @@ export function ExternalProjectRevisionView({
return (
<ExternalLayout session={session} leftSideNav={taskList}>
<div className="container">
<h2>Application Overview</h2>
<ExternalProjectFormSummary projectRevision={projectRevision} />
<ProjectFormSummary projectRevision={projectRevision} viewOnly={true} />{" "}
{renderList && (
<Button
size="small"
Expand Down

0 comments on commit 978b838

Please sign in to comment.