From 5162f03cf9774dd0c581b2d488d63d5cfd6a560c Mon Sep 17 00:00:00 2001 From: Ivan S Glazunov Date: Thu, 3 Oct 2024 19:36:59 +0300 Subject: [PATCH] 0.0.593 --- imports/react-token.tsx | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/imports/react-token.tsx b/imports/react-token.tsx index 0d1b255b..e55cbdb9 100644 --- a/imports/react-token.tsx +++ b/imports/react-token.tsx @@ -14,8 +14,8 @@ export function useTokenController(defaultValue: string = '') : [string, (string }] } -export const TokenProvider = memo(function TokenProvider({ children }: { children?: any }) { +export const TokenProvider = function TokenProvider({ children }: { children?: any }) { const [token, setToken] = useTokenController(); // @ts-ignore return {children}; -}, () => true); \ No newline at end of file +}; \ No newline at end of file diff --git a/package.json b/package.json index e80f41f3..1f18eda6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@deep-foundation/deeplinks", - "version": "0.0.592", + "version": "0.0.593", "license": "Unlicense", "type": "module", "main": "import.js",