From e66a241be6d038cdd1dbe2007477ce595dd46d95 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sat, 28 Feb 2026 17:38:38 -0800 Subject: [PATCH] =?UTF-8?q?feat(api-client):=20=E2=9C=A8=20Implement=20Rea?= =?UTF-8?q?ct=20context=20provider=20for=20centralized=20API=20client=20ma?= =?UTF-8?q?nagement=20with=20configurable=20instances?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- @packages/@infrastructure/api-client/src/provider.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/@packages/@infrastructure/api-client/src/provider.tsx b/@packages/@infrastructure/api-client/src/provider.tsx index 93d773569..9f07bb9cb 100755 --- a/@packages/@infrastructure/api-client/src/provider.tsx +++ b/@packages/@infrastructure/api-client/src/provider.tsx @@ -1,5 +1,3 @@ -/** @jsxImportSource react */ - import { createContext, useContext, useMemo } from 'react'; import { createApiClient, ApiClient } from './create-api-client'; import type { ApiClientConfig } from './types';