Skip to content

Commit

Permalink
fix: Changed regex (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
sungik-choi authored Dec 9, 2023
2 parents 07ca6e1 + 0742b18 commit 60dd6f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { rhythm } from "~/src/styles/typography"
const About = () => {
const data = useStaticQuery<Queries.Query>(graphql`
query About {
allMarkdownRemark(filter: { fileAbsolutePath: { regex: "/about/" } }) {
allMarkdownRemark(filter: { fileAbsolutePath: { regex: "/.*\/about.md$/" } }) {
edges {
node {
html
Expand Down

0 comments on commit 60dd6f7

Please sign in to comment.