diff --git a/client/src/lib/api.ts b/client/src/lib/api.ts index fdfd75e8da4..703a5181bf1 100644 --- a/client/src/lib/api.ts +++ b/client/src/lib/api.ts @@ -25,7 +25,7 @@ const fetcher = async ({ if (method === "POST") { if (body instanceof FormData) { - // @ts-expect-error - Supressing potentially undefined options header + // @ts-expect-error - Suppressing potentially undefined options header delete options.headers["Content-Type"]; options.body = body; } else { diff --git a/tests/README.md b/tests/README.md index 8717d9127e2..00d6585bda2 100644 --- a/tests/README.md +++ b/tests/README.md @@ -24,6 +24,6 @@ This directory contains smoke and integration tests for Eliza project. ## Using in GitHub CI/CD - Settings -> Secrets and variables -> Actions: -- Create an enviroment +- Create an environment - Add repository secret `OPENAI_API_KEY` - Refer to https://docs.github.com/en/actions/security-for-github-actions/security-guides/using-secrets-in-github-actions for more information