From 40aec60a235e91c47b4167c33ac97f7ee480937e Mon Sep 17 00:00:00 2001 From: IvanDimanov Date: Mon, 26 May 2025 21:49:56 +0300 Subject: [PATCH] fix: Typo --- src/contexts/LiveAPIContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contexts/LiveAPIContext.tsx b/src/contexts/LiveAPIContext.tsx index d5376f86c..7af9e3f46 100644 --- a/src/contexts/LiveAPIContext.tsx +++ b/src/contexts/LiveAPIContext.tsx @@ -41,7 +41,7 @@ export const LiveAPIProvider: FC = ({ export const useLiveAPIContext = () => { const context = useContext(LiveAPIContext); if (!context) { - throw new Error("useLiveAPIContext must be used wihin a LiveAPIProvider"); + throw new Error("useLiveAPIContext must be used within a LiveAPIProvider"); } return context; };