Skip to content

Commit

Permalink
Disable caching to reduce number of chatgpt errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nezort11 committed Feb 1, 2023
1 parent 5b57c31 commit 6c4bfa9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -490,8 +490,9 @@ const App: React.FC = () => {
source={{ uri: "https://chat.openai.com/chat" }}
originWhitelist={["*"]}
domStorageEnabled
cacheEnabled
cacheMode="LOAD_DEFAULT"
cacheEnabled={false}
// cacheMode="LOAD_DEFAULT"
cacheMode="LOAD_NO_CACHE"
onMessage={handleMessage}
injectedJavaScriptBeforeContentLoaded={injectedScript}
keyboardDisplayRequiresUserAction={false}
Expand Down

0 comments on commit 6c4bfa9

Please sign in to comment.