Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
remove lever jobs gql
Browse files Browse the repository at this point in the history
  • Loading branch information
neurosnap committed Jun 22, 2021
1 parent e757bc7 commit 60c0478
Showing 1 changed file with 12 additions and 20 deletions.
32 changes: 12 additions & 20 deletions src/pages/careers.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ export default ({ data }) => (
<AptibleLayout>
<Helmet>
<title>Aptible | Careers</title>
<meta name="description" content="Aptible is a remote team seeking to build trust on the internet. Learn more about open opportunities at Aptible." />
<meta
name="description"
content="Aptible is a remote team seeking to build trust on the internet. Learn more about open opportunities at Aptible."
/>
</Helmet>
<Hero />
<PhotoCarousel />
Expand All @@ -23,7 +26,7 @@ export default ({ data }) => (
<QuotesCarousel quotedEmployees={data.quotedEmployees.edges} />
<Benefits />
</MapBackground>
<CurrentOpenings jobs={data.jobs.edges} />
<CurrentOpenings jobs={[]} />
</AptibleLayout>
);

Expand All @@ -33,8 +36,13 @@ export const query = graphql`
filter: {
slug: {
in: [
"ashley-mathew", "chris-gomes", "elyssa-cendana", "david-wen",
"mia-lopez", "sarah-veirs", "zachary-starr-glasser"
"ashley-mathew"
"chris-gomes"
"elyssa-cendana"
"david-wen"
"mia-lopez"
"sarah-veirs"
"zachary-starr-glasser"
]
}
}
Expand All @@ -50,21 +58,5 @@ export const query = graphql`
}
}
}
jobs: allLever(
sort: {
fields: [categories___team]
}
) {
edges {
node {
text
hostedUrl
categories {
team
location
}
}
}
}
}
`;

0 comments on commit 60c0478

Please sign in to comment.