In progress update job mutation. Unknown how to have this use an input object.

This commit is contained in:
Patrick Fic
2019-12-12 22:06:35 -08:00
parent 9d74cc19c9
commit 36e8449383
6 changed files with 24 additions and 10 deletions

View File

@@ -15,10 +15,8 @@ function JobsDetailPage({ match }) {
if (loading) return <SpinComponent />;
if (error) return <AlertComponent message={error.message} type="error" />;
console.log("routes", match);
return (
<div>
<Breadcrumb />
<JobTombstone job={data.jobs_by_pk} />
</div>
);

View File

@@ -1,6 +1,6 @@
import React from "react";
import { Typography } from "antd";
import HeaderContainer from "../../components/header/header.component";
import HeaderContainer from "../../components/header/header.container";
export default function Unauthorized() {
return (