From 2edfb52ef15bdacec365ea227913f4584a346960 Mon Sep 17 00:00:00 2001 From: Alexander Brandon Coles Date: Wed, 1 Oct 2025 17:35:40 +0200 Subject: [PATCH] docs: fix typo in Mantine package name --- docs/content/docs/getting-started/mantine.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/docs/getting-started/mantine.mdx b/docs/content/docs/getting-started/mantine.mdx index c50ef41e7a..73f4db9733 100644 --- a/docs/content/docs/getting-started/mantine.mdx +++ b/docs/content/docs/getting-started/mantine.mdx @@ -9,17 +9,17 @@ imageTitle: Mantine rich text editor using BlockNote [Mantine](https://mantine.dev/) is an open-source collection of React components. ```console tab="npm" -npm install @mantine/core @mantine/hooks @mantine/util +npm install @mantine/core @mantine/hooks @mantine/utils npm install @blocknote/core @blocknote/react @blocknote/mantine ``` ```console tab="pnpm" -pnpm add @mantine/core @mantine/hooks @mantine/util +pnpm add @mantine/core @mantine/hooks @mantine/utils pnpm add @blocknote/core @blocknote/react @blocknote/mantine ``` ```console tab="bun" -bun add @mantine/core @mantine/hooks @mantine/util +bun add @mantine/core @mantine/hooks @mantine/utils bun add @blocknote/core @blocknote/react @blocknote/mantine ```