Fix react errors, max context tokens, and preset mobile view (#269)

* fix: react errors

* fix: max tokens issue

* fix: max tokens issue
This commit is contained in:
Danny Avila 2023-05-14 17:26:21 -04:00 committed by GitHub
parent 262b402606
commit 6049c9e3ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 43 additions and 33 deletions

View file

@ -5,10 +5,10 @@ export default function DotsIcon() {
<svg
stroke="currentColor"
fill="none"
stroke-width="2"
strokeWidth="2"
viewBox="0 0 24 24"
stroke-linecap="round"
stroke-linejoin="round"
strokeLinecap="round"
strokeLinejoin="round"
className="h-4 w-4 flex-shrink-0 text-gray-500"
height="1em"
width="1em"
@ -18,17 +18,17 @@ export default function DotsIcon() {
cx="12"
cy="12"
r="1"
></circle>
/>
<circle
cx="19"
cy="12"
r="1"
></circle>
/>
<circle
cx="5"
cy="12"
r="1"
></circle>
/>
</svg>
);
}