react-terminal icon indicating copy to clipboard operation
react-terminal copied to clipboard

Mobile breaks with Next ThemeProvider wrapper

Open agamm opened this issue 3 years ago • 0 comments

It adds a text input that blocks the correct usage. image

https://github.com/pacocoursey/next-themes

To re-create the bug create a next.js project with next-themes and wrap like so:

import { ThemeProvider } from 'next-themes'
export default function App({ Component, pageProps }: AppProps) {
  return (
      <TerminalContextProvider>
        <ReactTerminal />
      </TerminalContextProvider>
})

agamm avatar Mar 02 '22 11:03 agamm