From e8875d7cbd193a86d20820f047e756a8f8c4603d Mon Sep 17 00:00:00 2001 From: mayuran-deriv Date: Thu, 19 Jun 2025 12:41:22 +0400 Subject: [PATCH] fix: check test link --- src/hooks/useSubscription/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hooks/useSubscription/index.tsx b/src/hooks/useSubscription/index.tsx index b3c68597..0d74c96e 100644 --- a/src/hooks/useSubscription/index.tsx +++ b/src/hooks/useSubscription/index.tsx @@ -7,6 +7,7 @@ import { import { useCallback, useState } from 'react'; const useSubscription = (name: T) => { + //just checking purpose const [is_loading, setIsLoading] = useState(false); const [is_subscribed, setSubscribed] = useState(false); const [error, setError] = useState();