Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #2385

Merged
merged 4 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/lib/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading