Marc McIntosh

Results 49 comments of Marc McIntosh

a colon ":" is \u003A, in the querry switching \uffff for \u0034 would exclude some characters. Can \uffff of \uff0 be used as separator tnsead of a colon? so the...

Hi @matthewlein You can use this fork for the time being until a fix on another plugin is merged. https://github.com/prismicio/gatsby-source-prismic-graphql/tree/flat/babel-plugin-remove-graphql-queries `npm install --save prismicio/gatsby-source-prismic-graphql#flat` Then check the package.json so that...

Hi @matthewlein Sorry I put in the wrong install command it should be `npm install --save prismicio/gatsby-source-prismic-graphql#flat` Here's the branch :) https://github.com/prismicio/gatsby-source-prismic-graphql/tree/flat

Hi @Funkh0user Try this ``` import React from "react" import MainLayout from "../../layouts/MainLayout" import { useStaticQuery, graphql } from "gatsby" import { RichText } from "prismic-reactjs" const Affiliate = ()...

Hi @Funkh0user Seems to work fine, is this the repo you are using? githum.com/Funkh0user/Global-Paradise-Studios It seems to work. try running `npm run clean`

Is `Page` supposed to be called `Article`? Do you have a example project with this issue?

@matthewlein thanks for the repo, I've forked it and managed to fix the errors when running `npm start` and `npm build`. The errors where coming from src/template/products.js. First error `Unknown...

@chrishawn if you can give me a repo in which the issue is recreated i'll take a look :)

try to set query as a stact property on your component. ``` export const query = `....` class MyComponent extends React.Component { ... } // here MyComponent.query = query export...