Skip to content

Commit

Permalink
fix link typo
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Feb 5, 2024
1 parent 33f8bb7 commit cc32333
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion apps/material-react-table-docs/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ function App({ Component, pageProps }: AppProps) {
pathname.includes('/docs/guides/') ||
pathname.includes('/migrating') ||
pathname === '/about' ||
pathname === '/changelog';
pathname === '/changelog' ||
pathname === '/roadmap';

const isMobile = useMediaQuery('(max-width: 900px)');
const isDesktop = useMediaQuery('(min-width: 1500px)');
Expand Down
4 changes: 2 additions & 2 deletions apps/material-react-table-docs/pages/roadmap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ A new `useMaterialReactTableLight` hook could be added to MRT V2 to allow for sm

### Version 3 Roadmap (2024)

There are some very large efforts being planned for V3/V4
There are some very large efforts being planned for V3/V4/V5

#### 1. Material UI V6

Expand Down Expand Up @@ -62,4 +62,4 @@ Read more about the future of Material UI versions in their [official blog post]

#### 4. Mantine React Table

Material React Table's sister library,[ Mantine React Table](https://mantine-react-table..com), continues to be developed in parallel, as it is nearing a stable V2 release itself. If you like MRT, but prefer to write pure CSS/CSS Modules instead of styled components or the `sx` prop, you'll probably like Mantine React Table more than Material React Table.
Material React Table's sister library,[ Mantine React Table](https://mantine-react-table.com), continues to be developed in parallel, as it is nearing a stable V2 release itself. If you like MRT, but prefer to write pure CSS/CSS Modules instead of styled components or the `sx` prop, you'll probably like Mantine React Table more than Material React Table.

0 comments on commit cc32333

Please sign in to comment.