Skip to content

Commit

Permalink
remove beta from install command
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Oct 28, 2023
1 parent b3b1e2f commit 015bf7c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -5,7 +5,7 @@ import { SampleCodeSnippet } from './SampleCodeSnippet';
type Tab = 'npm' | 'pnpm' | 'yarn' | 'bun';

const defaultPackagesString =
'material-react-table@beta @mui/material @mui/x-date-pickers @mui/icons-material @emotion/react @emotion/styled';
'material-react-table @mui/material @mui/x-date-pickers @mui/icons-material @emotion/react @emotion/styled';

export const InstallCommand = ({
packagesString = defaultPackagesString,
Expand Down
Expand Up @@ -24,7 +24,7 @@ import { FAQs } from '../../../components/mdx/FAQs';
### Quick Install

<InstallCommand packagesString="material-react-table@beta" />
<InstallCommand packagesString="material-react-table" />

### Install With Required Peer Dependencies (Recommended)

Expand All @@ -42,6 +42,7 @@ If you get an error like this:
"Error: Element type is invalid: expected a string (for built-in components)
or a class/function (for composite components) but got: undefined.
```
You likely forgot to export your component from the file it's defined in,
or you might have mixed up default and named imports.
Expand Down
1 change: 0 additions & 1 deletion upgrade-examples.sh
Expand Up @@ -21,7 +21,6 @@ for file in *; do

## Update dependency versions
npx npm-check-updates -u
npx npm-check-updates -u material-react-table -t greatest

# Run npm install
npm install --package-lock-only --force
Expand Down

1 comment on commit 015bf7c

@vercel
Copy link

@vercel vercel bot commented on 015bf7c Oct 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.