Continue polling VariantStats while LLM retrieval in progress, minor UI fixes (#54)

* Prevent zoom in on iOS

* Expand function return code background to fill cell

* Keep OutputStats on far right of cells

* Continue polling prompt stats while cells are retrieving from LLM

* Add comment to _document.tsx

* Fix prettier
This commit is contained in:
arcticfly
2023-07-17 18:04:38 -07:00
committed by GitHub
parent 8e7a6d3ae2
commit 4131aa67d0
6 changed files with 85 additions and 18 deletions

23
src/pages/_document.tsx Normal file
View File

@@ -0,0 +1,23 @@
import Document, { Html, Head, Main, NextScript } from "next/document";
class MyDocument extends Document {
render() {
return (
<Html>
<Head>
{/* Prevent automatic zoom-in on iPhone when focusing on text input */}
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default MyDocument;