Fix typo in error message

This commit is contained in:
2026-03-19 22:57:54 -04:00
parent a5a2f8324e
commit 53ccfe1d4f

View File

@@ -70,7 +70,7 @@ export function useToken(){
const context = useContext(TokenContext); const context = useContext(TokenContext);
if(!context){ if(!context){
throw new Error("useTOken must be called inside a TokenProvider"); throw new Error("useToken must be called inside a TokenProvider");
} }
return context; return context;