attempt to make the add modal more accessible

This commit is contained in:
Dhravya Shah 2024-07-02 16:39:47 -05:00
parent a1f356548f
commit 31bc48fa4f
2 changed files with 2 additions and 2 deletions

View file

@ -203,7 +203,7 @@ app.get(
const preparedContext = normalizedData.map(
({ metadata, score, normalizedScore }) => ({
context: `Website title: ${metadata!.title}\nDescription: ${metadata!.description}\nURL: ${metadata!.url}\nContent: ${metadata!.text}`,
context: `Title: ${metadata!.title}\nDescription: ${metadata!.description}\nURL: ${metadata!.url}\nContent: ${metadata!.text}`,
score,
normalizedScore,
}),

View file

@ -178,7 +178,7 @@ function Menu() {
</div>
</div>
<DialogContent className="sm:max-w-[425px] rounded-2xl bg-[#161f2a]/40 backdrop-blur-md">
<DialogContent className="sm:max-w-[425px] rounded-2xl bg-background z-[39] backdrop-blur-md">
<form
action={async (e: FormData) => {
const content = e.get("content")?.toString();