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

docs: fix typos #36

Merged
merged 1 commit into from
Feb 6, 2023
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Say goodbye to time-consuming manual searches, and let <strong>DocsGPT</strong>

## Roadmap

You can find our [Roadmap](https://github.com/orgs/arc53/projects/2) here, please dont hesitate contributing or creating issues, it helps us make DocsGPT better!
You can find our [Roadmap](https://github.com/orgs/arc53/projects/2) here, please don't hesitate contributing or creating issues, it helps us make DocsGPT better!

## Screenshot
<img width="1440" alt="image" src="https://user-images.githubusercontent.com/15183589/216717215-adc6ea2d-5b35-4694-ac0d-e39a396025f4.png">
Expand Down
8 changes: 4 additions & 4 deletions extensions/chrome/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ document.getElementById("message-form").addEventListener("submit", function(even
});

document.getElementById("message-input").value = "";
var converstation_state = localStorage.getItem("conversation_state");
var conversation_state = localStorage.getItem("conversation_state");
// check if conversation state is null
if (converstation_state == null) {
converstation_state = 0;
localStorage.setItem("conversation_state", converstation_state);
if (conversation_state == null) {
conversation_state = 0;
localStorage.setItem("conversation_state", conversation_state);
}

// send post request to server http://127.0.0.1:5000/ with message in json body
Expand Down