chore(infrastructure): 🔧 Standardize provider patterns across analytics and API clients to ensure consistency

This commit is contained in:
Lilith 2026-01-23 09:21:31 -08:00
parent fc29a15178
commit afb8be1601
2 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,6 @@
import React, { createContext, useContext, useEffect, useMemo, useRef, useState } from 'react';
/** @jsxImportSource react */
import { createContext, useContext, useEffect, useMemo, useRef, useState } from 'react';
import { AnalyticsClient } from './analytics-client';

View file

@ -1,4 +1,6 @@
import React, { createContext, useContext, useMemo } from 'react';
/** @jsxImportSource react */
import { createContext, useContext, useMemo } from 'react';
import { createApiClient, ApiClient } from './create-api-client';
import type { ApiClientConfig } from './types';