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; };