From 681390ab62f2480119b5388671348a3de082a266 Mon Sep 17 00:00:00 2001 From: Oskari Okko Ojala Date: Mon, 6 Nov 2023 10:28:16 +0200 Subject: [PATCH] Add missing space to migration diff --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c48ade9..8cc4824 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,7 +22,7 @@ Even though some users might experience breaking changes, mostly because of the The `jwtDecode` function is now no longer the default export, and is instead provided as a named export. Make sure to update your code in places where you are importing this function: ```diff --import jwtDecodefrom "jwt-decode"; +-import jwtDecode from "jwt-decode"; +import { jwtDecode } from "jwt-decode"; ```