From c9d721a9e681b34ba0e5396cbc4faf638727404c Mon Sep 17 00:00:00 2001 From: Andy Kenward <4893048+andykenward@users.noreply.github.com> Date: Tue, 22 Nov 2022 09:09:34 +0000 Subject: [PATCH] fix(examples): with-msw update msw Using msw `0.47.3` doesn't work in this example. Updating msw to `^0.49.0` and not locking it to an exact version. --- examples/with-msw/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-msw/package.json b/examples/with-msw/package.json index 5b9b20b7b4b4..131fad7ab032 100644 --- a/examples/with-msw/package.json +++ b/examples/with-msw/package.json @@ -6,7 +6,7 @@ "start": "next start" }, "dependencies": { - "msw": "0.47.3", + "msw": "^0.49.0", "next": "latest", "react": "^18.2.0", "react-dom": "^18.2.0"