-
Notifications
You must be signed in to change notification settings - Fork 340
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unhandled Runtime Error Error: schema
is required to be passed as a property to TinaProvider
. You can learn more about this change here: https://github.com/tinacms/tinacms/pull/2823
#259
Comments
same error here |
@adamxrodriguez , Are you able to get a solution to this ? |
A workaround is cleanup cookies, localstorage, etc... Still not able to navigate to |
I was able to fix this somewhat following the instructions from here: https://tina.io/blog/upgrading-to-iframe/
To fix the getPostsList bug, copy the [slug].tsx file from @logan-anderson's tina-fix repo. |
I'll try it later |
I'm trying to make it works with your instructions but no results. For now, /admin/index.html doesn't crash anymore but it gives 404. Here is my _app.tsx import 'swiper/css';
import 'swiper/css/bundle';
import 'swiper/css/navigation';
import 'swiper/css/autoplay';
import { AppProps } from 'next/dist/shared/lib/router/router';
import dynamic from 'next/dynamic';
import Head from 'next/head';
import { ColorModeScript } from 'nextjs-color-mode';
import React, { PropsWithChildren } from 'react';
import { TinaEditProvider } from 'tinacms/dist/react';
import Footer from 'components/Footer';
import { GlobalStyle } from 'components/GlobalStyles';
import Navbar from 'components/Navbar';
import NavigationDrawer from 'components/NavigationDrawer';
import NewsletterModal from 'components/NewsletterModal';
import WaveCta from 'components/WaveCta';
import { NewsletterModalContextProvider, useNewsletterModalContext } from 'contexts/newsletter-modal.context';
import { NavItems } from 'types';
const navItems: NavItems = [
{ title: 'Awesome SaaS Features', href: '/features' },
{ title: 'Pricing', href: '/pricing' },
{ title: 'Contact', href: '/contact' },
{ title: 'Sign up', href: '/sign-up', outlined: true },
];
const TinaCMS = dynamic(() => import('tinacms'), { ssr: false });
function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="" />
<link rel="icon" type="image/png" href="/favicon.png" />
{/* <link rel="alternate" type="application/rss+xml" href={EnvVars.URL + 'rss'} title="RSS 2.0" /> */}
{/* <script
dangerouslySetInnerHTML={{
__html: `window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-117119829-1', 'auto');
ga('send', 'pageview');`,
}}
/> */}
{/* <script async src="https://www.google-analytics.com/analytics.js"></script> */}
</Head>
<ColorModeScript />
<GlobalStyle />
<Providers>
<Modals />
<Navbar items={navItems} />
{/* <TinaEditProvider
editMode={
<TinaCMS
query={pageProps.query}
variables={pageProps.variables}
data={pageProps.data}
isLocalClient={!process.env.NEXT_PUBLIC_TINA_CLIENT_ID}
branch={process.env.NEXT_PUBLIC_EDIT_BRANCH}
clientId={process.env.NEXT_PUBLIC_TINA_CLIENT_ID}
{...pageProps}
>
{(livePageProps: any) => <Component {...livePageProps} />}
</TinaCMS>
}
> */}
<Component {...pageProps} />
{/* </TinaEditProvider>
*/} <WaveCta />
<Footer />
</Providers>
</>
);
}
function Providers<T>({ children }: PropsWithChildren<T>) {
return (
<NewsletterModalContextProvider>
<NavigationDrawer items={navItems}>{children}</NavigationDrawer>
</NewsletterModalContextProvider>
);
}
function Modals() {
const { isModalOpened, setIsModalOpened } = useNewsletterModalContext();
if (!isModalOpened) {
return null;
}
return <NewsletterModal onClose={() => setIsModalOpened(false)} />;
}
export default MyApp; |
Hi @Ostefanini, Could you show me your [slug].tsx under pages/blog/? |
I have the same issue. I tried the tina-fix repo, but it's still not working with this issue. Did you resolve issue? @Ostefanini |
Unhandled Runtime Error
Error:
schema
is required to be passed as a property toTinaProvider
. You can learn more about this change here: tinacms/tinacms#2823Tried to import and find schema. no luck. not sure how the pull/2823 applies to it. there is a but no in _app.tsx
The text was updated successfully, but these errors were encountered: