From c6c603ddb60571b79438000e23c6a8f030c03d7b Mon Sep 17 00:00:00 2001 From: Sam Grace <11719086+sam-at-work@users.noreply.github.com> Date: Tue, 6 Feb 2024 14:34:03 +0100 Subject: [PATCH] Remove trailing comma from JSON --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 636681b4..f8fa43b1 100644 --- a/README.md +++ b/README.md @@ -48,8 +48,8 @@ You can fix this issue either by downgrading to Node 16, or by updating the `pac ```diff "scripts": { -- "start": "start-storybook -p 6006 -s public", -+ "start": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006 -s public", +- "start": "start-storybook -p 6006 -s public" ++ "start": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006 -s public" }, ```